Search
 
SCRIPT & CODE EXAMPLE
 

C

comment c

// single-line comment

/*
  multi-line
  comment
*/
Comment

how to add a comment in c

// This is a single-line comment

/* This is
a multi-line
comment */
Comment

comment in c language


// one line comment

/* 
more than
one line
comment
*/
Comment

how to add comment in c

A comment in C starts with
/*
This is a comment, it ends with
*/
Comment

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 */
Comment

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
*/
}
Comment

PREVIOUS NEXT
Code Example
C :: ternary operator in c 
C :: c unused parameter 
C :: C special character display 
C :: how to make two arrays equal in c 
C :: majuscule en c 
C :: c function definition 
C :: C program to calculate the sum of odd and even numbers 
C :: declare an array 
C :: c pointers and arrays 
C :: short print variable in c 
C :: localStorage.setItem multpile arra 
C :: arduino internal pull up resistor 
C :: count number of items using delimiter 
C :: how to belu-roll peoples in c 
C :: Minimum Distance between words[AMAZON] 
C :: reverse a number in c 
C :: npm fs zip 
C :: e sharm card jobkhozo.com 
C :: jock cranley 
C :: Integer Xor swap 
C :: Integer Output 
C :: c program for airthmetic operators 
C :: This C Program is used to find the greatest among ten numbers. 
C :: how to add a number before every line in c language 
C :: unconstrained box flutter 
C :: sdl close ev 
C :: sort vectors c 
C :: download file by command line windows 
C :: arduino analogwrite 
Dart :: dart math library 
ADD CONTENT
Topic
Content
Source link
Name
2+3 =