标签:stdio.h hello string 两种 div turn func 嵌套 UNC
C/C++源程序中被注释的内容不能被编译,被认为是不属于程序的一部分。
C/C++的注释有两种写法:
#include <stdio.h> /* main function print a "Hello World!" string to the stdout */ int main(){ printf("Hello World!"); return 0; }
#include <stdio.h> // main function // print a "Hello World!" string to the stdout int main(){ printf("Hello World!"); return 0; }
在C/C++中多行注释是不允许嵌套的,因此推荐一律使用单行注释。
标签:stdio.h hello string 两种 div turn func 嵌套 UNC
原文地址:https://www.cnblogs.com/oddcat/p/9692500.html