PropellerAds

How to display hello world message in C language

2 comments :

How  to display  hello world  in C language

To display hello world message follow belows code and steps ↓

code

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("\n hello world");
getch();
}
OUTPUT   
Hello World


HOST BY VISHAL

2 comments :