Simple C program printing "Hello World !"

#include<stdio.h>
int main()
{
printf("Hello World !");
return 0;
}

Post a Comment

0 Comments