This Program simply displays the string "Hello World"
Comments are placed inside /* */
#include <stdio.h> /*use the stdio header file*/
#include <conio.h> /*use the conio header file*/
main() /*main function*/
{ /*start the program*/
clrscr(); /*clears the screen*/
printf("hello world\n"); /*print the string to the screen*/
getch(); /*pause the screen*/
} /*end the program*/