C examples for Statement:Comments
Add more comments to the program to describe the statements
/* Displaying a Quotation */ #include <stdio.h> // a preprocessor directive int main(void) // identifies the function main() { // marks the beginning of main() printf("this is a test for you !"); // line outputs a quotation return 0; // returns control to the operating system } // marks the end of main()