Answers for "c comerical"

C
1

C comment

/* comments in c work like this */

/*they can be one line...*/

/*
...or
multiple
lines
*/

printf("Hello World"); /* you can comment in the same line with code */
Posted by: Guest on January-24-2021
0

commenting in c

#include stdio.h
int main(){
  printf("Only this code will be printed.");
//This is a single line comment.
/*
this is a multiple line 
comment
*/
}
Posted by: Guest on April-19-2021

Code answers related to "C"

Browse Popular Code Answers by Language