Write a program to print "Hello World"

Program : -


#include<stdio.h>            //Heder file
#include<conio.h>           //Heder file
void min()                        // Main function
{
    clrscr();                       // clear screen function
    printf("Hello World");  // Print Function
    getch();                      // getch is hold our output
}


Output :-

Hello World