A simple program to start coding C language.Also to understand the syntax of C we first write and execute "Hello World" program.
//Program to print HELLO WORLD
#include<stdio.h>
int main()
{
printf("\n HELLO WORLD \n");
return 0;
}
No comments:
Post a Comment