C program to print "Hello World"
In this program we will Print the "Hello World" or any other string that you want by replacing the Hello world from the string You want in printf("Hello World");
#include<conio.h>
void main()
{
printf("Hello World"); //Replace the text "Hello World" text you want
getch();
}
No Comment to " C program to print "Hello World" "