'Hello World' in C Programming
See also - Why Language 'C' requires after 'B' ?, How did C get its name ?
How to write "Hello World" in C language.....!
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("Hello World");
getch();
}
screen shots showing program for "hello world"
Download Turbo C from here - Turbo C
Comments
Post a Comment