C examples for Statement:Comments
Comment is there to remind you, or someone else.
It makes the code easier to read.
Anything between /* and */ is treated as a comment.
/* Displaying a Quotation */ #include <stdio.h> int main(void) { printf("this is a test!"); return 0;//from w w w. j a v a2s. c o m }