Add more comments to the program to describe the statements - C Statement

C examples for Statement:Comments

Description

Add more comments to the program to describe the statements

Demo Code

/* 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()

Result


Related Tutorials