本文概述
- 单行注释
- 多行注释
- 单行注释
- 多行注释
#include<
stdio.h>
int main(){
//printing information
printf("Hello C");
return 0;
}
输出:
Hello C
甚至你也可以在语句后添加注释。例如:
printf("Hello C");
//printing information
多行注释多行注释由斜杠星号\ * … * \表示。它可以占用多行代码,但不能嵌套。句法:
/*
code
to be commented
*/
让我们来看一个用C语言编写多行注释的示例。
#include<
stdio.h>
int main(){
/*printing information
Multi-Line Comment*/
printf("Hello C");
return 0;
}
【c语言中的注释】输出:
Hello C