Embellish comments to make them stand out - C Statement

C examples for Statement:Comments

Description

Embellish comments to make them stand out

Demo Code

/*******************************************
 * This is a very important comment        *
 * so please read this.                    *
 *******************************************/

#include <stdio.h>

int main(void)
{
  printf("this is a test!");
  return 0;//w ww  . j av  a2  s .  c o  m
}

Result


Related Tutorials