C語言註釋
C語言中的註釋用於提供有關代碼行的信息,它被廣泛用於記錄代碼(或對代碼功能實現的說明)。在C語言中有兩種類型的註釋,它們分別如下 -
- 單行註釋
- 多行註釋
1.單行註釋
單行註釋由雙斜槓//
表示,下面我們來看看一個單行註釋的例子。創建一個源文件:single_line_comments.c,代碼如下 -
#include <stdio.h>
#include <conio.h>
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
line n...
*/
下面下面來看看看C語言中的多行註釋的例子。
創建一個源文件:multi_line_comments.c,代碼如下 -
#include <stdio.h>
#include <conio.h>
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);
}
執行上面示例代碼,得到以下結果 -
Hello C
The value of (a * b) is :200
請按任意鍵繼續. . .