Program :
/* First C program: Hello World */
//include information about standard library and Console Library header files
#include <stdio.h>
#include <conio.h>
// define a function named main
int main()
{
// main calls library function printf to print this sequence of characters;
// '\n' represent the newline character
clrscr();
printf("Hello, World! \n");
getch();
return 0;
}
0 comments:
Post a Comment