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 :: majuscule en c 
C :: C float and double Output 
C :: writing structures in c 
C :: node in c 
C :: c programming programiz 
C :: declare an array 
C :: files in c programming 
C :: what is clrsce in C 
C :: hostbuilder add environment variables 
C :: bcd to char c 
C :: promt user input C 
C :: c get int inpot 
C :: C++ How to use enums for flags? 
C :: convert c code to assembly language 
C :: error: argument 1 range [18446744071562067968, 18446744073709551615] exceeds maximum object size 9223372036854775807 [-werror=alloc-size-larger-than=] 
C :: phpunit assert continue 
C :: error: invalid type for iteration variable ‘i’ #pragma omp parallel for 
C :: What keyword covers unhandled possibilities? 
C :: c stack 
C :: float para numeros aleatorios em c 
C :: Letters and Digits Total 
C :: how we can strore a nested structure values in arrays 
C :: c# Regex similar wor 
C :: print hello world c 
C :: how to reset to read from beginning of file c 
C :: Returns number of values 
C :: split string at space C 
C :: c get string 
Dart :: listview.separated flutter 
Dart :: datetime dart format print 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =