2
4

6 回答 6

8
于 2012-12-30T06:47:51.603 回答
6

您不包括该库,请在开始代码之前添加它

#include <stdio.h>

因为您正在使用printf()它,它是一个输出函数,属于stdio.h库...

于 2012-12-29T15:43:09.967 回答
4

您缺少声明库的#include。

添加 :

#include <stdio.h>

main(){

  ...etc

您需要先声明函数,然后才能使用它们。

于 2012-12-29T15:43:46.527 回答
1

包括以下头文件以访问printf.

#include <stdio.h>
于 2012-12-29T15:44:12.043 回答
1

不兼容的隐式声明......这句话告诉了一些东西是在printf之前存在的。那就是#include“C中的每个内置函数都应该引用lib中存在的预定义过程”

于 2012-12-29T17:51:20.200 回答
0

在你的程序中包含头文件..

#include<stdio.h>

当编译器期望一个function declarationor function prototype 并且 printf() 函数原型在#include<stdio.h>

于 2012-12-29T16:27:49.617 回答