How to print "Hello World" in c program ?

Leave a Comment
            I used C language to print "Hello World" in C program. Its basic knowledge of print in C language.

Input :

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


Output :



0 comments:

Post a Comment