//Standard Library Functions(Header Files used)
#include<stdio.h>
#include <conio.h>
//Main method[Execution of program starts from main]
int main()
{
// function for clearing screen
clrscr();
// function to print the output on screen
printf("Hello World! Welcome To C\n");
printf("Come One Come All");
//function for holding the screen until any key is pressed
getch();
//Returing main function
return 0;
}