Console C

/*Displaying a Quotation */
#include   /* stdio.h is a preprocessor directive     */
void main()        /* void main() identifes the function main()   
                           The entry point of the program.
                        */
{                                       /* "{" marks the beginning of main()   */
  printf("Hi!");  /* This line displays a String */
}                                       /* "}" marks the end of main()         */