A program to display Hello Workd
Code
#include<stdio.h>
#include<conio.h>
void main()
{
printf(“Hello World\n”);
printf(“I am Good.\n”); //where \n is stand to enter it to the new next line
printf(“How are you?\n”);
getch();
}
Output
Hello World
I am Good.
How are you?
Wow, Amazing i like it.