Print "Hello World" is the basic program in C Language.
Just copy the bellow code and paste it to your TurboC software. And then run the program. You can download the TurboC software.
Source Code...
#include <stdio.h>
#include <conio.h>
void main()
{
clrscr(); /* first simple and basic C program */
printf("Hello World! ");
getch();
}
Hello World!
0 comments:
Post a Comment