Answers for "C comment"

C
2

multi line comment c

/* this is how
   you comment multiple lines
   in c
   */
Posted by: Guest on December-01-2020
4

comment c

// single-line comment

/*
  multi-line
  comment
*/
Posted by: Guest on August-24-2020
4

how to add a comment in c

A comment in C starts with
/*
This is a comment, it ends with
*/
Posted by: Guest on August-27-2020
2

how to add a comment in c

// This is a single-line comment

/* This is
a multi-line
comment */
Posted by: Guest on September-14-2020
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

Code answers related to "C"

Browse Popular Code Answers by Language