c语⾔怎么写注释,C语⾔注释
C语⾔中的注释⽤于提供有关代码⾏的信息,它被⼴泛⽤于记录代码(或对代码功能实现的说明)。在C语⾔中有两种类型的注释,它们分别如下 -
单⾏注释
多⾏注释
1.单⾏注释
单⾏注释由双斜杠//表⽰,下⾯我们来看看⼀个单⾏注释的例⼦。创建⼀个源⽂件:single_line_comments.c,代码如下 -
#include
#include
void main(){
// 这是⼀个注释⾏,下⾯语句打印⼀个字符串:"Hello C"
printf("Hello C"); // printing information
// 这是另⼀个注释⾏,下⾯语句求两个变量的值
int a = 10, b = 20;
int c = 0;
c = a + b;
printf("The sum of a+b is :%d", c);
}
执⾏上⾯⽰例代码,得到以下结果 -
Hello C
The sum of a+b is :30
请按任意键继续. . .
2.多⾏注释
多⾏注释由斜杠星号/* ... */表⽰。它可以占⽤许多⾏代码,但不能嵌套。语法如下:
/*
code
to be commented
line 3
*/
下⾯下⾯来看看看C语⾔中的多⾏注释的例⼦。
创建⼀个源⽂件:multi_line_comments.c,代码如下 -
#include
#include
void main() {
/*printing
information*/
printf("Hello C\n");
/*
多⾏注释⽰例:
下⾯代码求两个数的乘积,
int a = 10, b =20;
int c = a * b;
*/
int a = 10, b = 20;
int c = a * b;
printf("The value of (a * b) is :%d \n", c);
}
执⾏上⾯⽰例代码,得到以下结果 -html单行文本框代码怎么写
Hello C
The value of (a * b) is :200
请按任意键继续. . .
¥ 我要打赏
纠错/补充
收藏
加QQ啦,易百教程官⽅技术学习
注意:建议每个⼈选⾃⼰的技术⽅向加,同⼀个QQ最多限加 3 个。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。