C語言的注釋

2021-08-11 07:58:22 字數 661 閱讀 4388

c語言中,注釋有兩種型別

單行注釋通常用於對程式中的某一行**進行解釋,用」//」符號表示,後面為注釋的內容

示例**

printf("hello,world\n");       //輸出hello,world
多行注釋就是注釋中的**,可以為多行,以符號」/「開頭,以符號」/」結尾

示例**

/* printf("hello,world\n");

return

0; */

在c語言中,有的注釋可以巢狀使用,有的不能巢狀

多行注釋」/……/「中,可以巢狀單行注釋」//」

示例**

/* printf("hello,world\n");         //輸出hello,world

return

0; */

多行注釋」/……/」中,不能巢狀多行注釋」/……/」

/*

/* printf("hello,wolrd");

return

0; */

*/

上述**,第乙個開始符號,會和第二個結束符號匹配,然後,第二個結束符號,找不到開始注釋符

jsp 單行注釋多行注釋 C語言的注釋

c語言中,注釋有兩種型別 單行注釋 單行注釋通常用於對程式中的某一行 進行解釋,用 符號表示,後面為注釋的內容 示例 printf hello,worldn 輸出hello,world 多行注釋 多行注釋就是注釋中的 可以為多行,以符號 開頭,以符號 結尾 示例 printf hello,world...

注釋轉換 (C語言注釋轉換為c 注釋)

1.一般情況 int num 0 int i 0 2.換行問題 int i 0 int j 0 int i 0 int j 0 3.匹配問題 int i 0 xx 4.多行注釋問題 int i 0 int j 0 int k 0 int k 0 5.連續注釋問題 6.連續的 問題 7.c 注釋問題 ...

實現c語言注釋轉換為c 注釋

這篇文章將實現 c語言注釋轉換為c 注釋 例如,將下面的c語言注釋轉換為c 注釋 1.一般情況 int i 0 2.換行問題 int i 0 int j 0 int i 0 int j 0 3.匹配問題 int i 0 xx 4.多行注釋問題 int i 0 int j 0 int k 0 int ...