commentair c code example
Example 1: commentaire c
// Ceci est un commentaire en C
/*
Ceci est un commentaire en C
écrit sur plusieurs lignes
*/
Example 2: 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 */