A simple C Program

Here is a very simple and basic program in C Programming Language. This C program displays "Hello World!" in the output window. All syntax and commands in C Programming are case sensitive. Also each statement should end with a semicolon (;), which is a statement terminator.

#include
#include
int main()
{
printf("Hello World!");
getch();
return(0);
}

OUTPUT :
Hello World!