Mega Code Archive

 
Categories / C / Console
 

Displaying a Quotation

/*Displaying a Quotation */ #include <stdio.h>  /* 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()         */