注释是代码的一部分,编译器将忽略它们。它使代码易于阅读和理解。单行注释和多行注释在C ++语言中的工作方式相同。
C / C ++中的注释
// Single Line Comment /* Multi Line Comments */
这是C语言注释的示例,
#include <stdio.h> #include <string.h> int main () { /* declarations of data members */ char s[10] = "HelloWorld"; char d[10]; int n; n = strxfrm(d, s, 5); printf("Length of string : %d", n); // length of string return(0); }
输出结果
Length of string : 10
在上面的程序中,同时显示了单行和多行注释。程序正在将字符集复制到目标位置。
/* declarations of data members */ char s[10] = "HelloWorld"; char d[10]; int n; n = strxfrm(d, s, 5); printf("Length of string : %d", n); // length of string