Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 327 Bytes

single_comment_and_multi_comment_in_c.md

File metadata and controls

16 lines (12 loc) · 327 Bytes

在C语言中,单行注释使用 // ,多行注释使用 /* */,还有一种巧妙的方法是使用#if 0 #endif这样的代码裁剪方法:

// 这是单行注释

/* 这是多行注释
在这个范围内都是注释
*/

int a,b;

#if 0
其实这里也是多行注释
在这个范围内都是注释
#endif