Comments (C)
Comments in C are written either between /* and */, or in C99 and C89 with GNU extensions, with // and extending to the end of the line.
#include "stdio.h"
int main(void){
puts("Hello, World");
/*This text is ignored*/
puts("Goodnight, Moon");
//and so is this, at least in C99
}
page revision: 1, last edited: 09 Jun 2013 00:58