So If this is your first program in C Programming language than i am more than happy to present you your first hello world program in C programming language.
Now Let's Print Hello World In C
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");
return 0;
}
Output: Of this program in c will be : Hello World.
No comments:
Post a Comment