Hello World Program in C

#include <stdio.h>

int main()
{
     printf("Hello World!");

    return 0;
}

Comments

Popular posts from this blog

Timus Problem 1086. Cryptography Accepted Solution in C