在#include"stdio.h"命令前插入注释符号"//",程序编译后有警告出现 为什么?

日期:2021-11-16 21:37:18 人气:1

在#include"stdio.h"命令前插入注释符号"//",程序编译后有警告出现 为什么?

你读一下警告的内容。
注释以后,stdio.h就不再包含进来。那么,stdio.h里面的函数就都不可用。如果你的代码里面使用了stdio.h里面的函数,就会警告的。因为编译器找不到这些函数了。
举个例子:
比如你用到printf,会警告:use of undeclared identifier 'printf'
(使用了没有声明的标识符 printf)
'printf' was not declared of this s
    A+
热门评论