C examples for Statement:Comments
Use a comment to identify the author of the code and to assert your copyright.
/*/* 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; }