Use a comment to identify the author of the code and to assert your copyright. - C Statement

C examples for Statement:Comments

Description

Use a comment to identify the author of the code and to assert your copyright.

Demo Code

/*/*  w w  w. ja v a  2s.c o m*/
 * Written by book2s.com
 * Copyright 2018
*/

#include <stdio.h>

int main(void)
{
  printf("this is a test!");
  return 0;
}

Result


Related Tutorials