Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

C 注释


C 中的注释

注释可用于解释代码,并使其更具可读性。它还可以用于在测试备用代码时阻止执行。

注释可以是**单行**或**多行**。


单行注释

单行注释以两个正斜杠 (//) 开头。

// 和行尾之间的任何文本都将被编译器忽略(不会被执行)。

此示例在代码行之前使用单行注释

示例

// 这是一个注释
printf("Hello World!");
动手试试 »

此示例在代码行末尾使用单行注释

示例

printf("Hello World!"); // 这是一个注释
动手试试 »

C 多行注释

多行注释以 /* 开头,以 */ 结尾。

/**/ 之间的任何文本都将被编译器忽略

示例

/* 下面的代码将打印 Hello World! 的文字
到屏幕上,而且它很神奇 */
printf("Hello World!");
动手试试 »

单行或多行注释?

您可以根据自己的喜好选择使用哪种。通常,我们使用 // 用于简短注释,使用 /* */ 用于较长注释。

注意:在**C99** 版本(1999 年发布)之前,C 中只能使用多行注释。


C 练习

通过练习测试自己

练习

C 中的注释是用特殊字符编写的。插入缺失的部分

 This is a single-line comment
 This is a multi-line comment 
 

开始练习



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.