Adding Comments with /* */ - C Statement

C examples for Statement:Comments

Introduction

Comment is there to remind you, or someone else.

It makes the code easier to read.

Anything between /* and */ is treated as a comment.

Demo Code

/* 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
}

Result


Related Tutorials