c语言 调用函数例子,为什么会报错啊?

#include"stdio.h"main(){printst();print_hello();printst();}printst(){printf("********... #include "stdio.h"
main()
{
printst();
print_hello();
printst();
}
printst()
{
printf("****************\n");
}
print_hello()
{
printf("HELLO!\n");
}

我想输出如下:
****************************
HELLO!
****************************
错误为
: error C2065: 'printst' : undeclared identifier
: error C2065: 'print_hello' : undeclared identifier
: warning C4508: 'main' : function should return a value; 'void' return type assumed
: error C2373: 'printst' : redefinition; different type modifiers
: warning C4508: 'printst' : function should return a value; 'void' return type assumed
: error C2373: 'print_hello' : redefinition; different type modifiers
: warning C4508: 'print_hello' : function should return a value; 'void' return type assumed
执行 cl.exe 时出错.

我用的vc6.0
展开
 我来答
空皮碧情的板1d
2013-04-19 · TA获得超过336个赞
知道答主
回答量:125
采纳率:22%
帮助的人:48.2万
展开全部
首先,你定义的那些函数,最好改为void printst(void),下面那几个也一样,因为这样很容易让人知道你写的函数是什么类型。另外,自己写函数,有 申明过程,就是说,因为你的main在你写的函数的前面,编译器无法知道你的main函数里printst()这些是什么意思,所以,在main前面你要申明,即加上void printst(void);意思是告诉编译器,这个函数已经有了。。。你上面写了3个,我这里只说了一个,每个都要那样。。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
笔一下
2013-04-19 · TA获得超过102个赞
知道答主
回答量:78
采纳率:0%
帮助的人:29.1万
展开全部
在main()前加上printst();print_hello();作声明,因为你的主函数在前面,还有在函数前加上void会规范点。。即:
#include "stdio.h"
void printst();
void print_hello();
void main()
{
printst();
print_hello();
printst();
}
void printst()
{
printf("****************\n");
}
void print_hello()
{
printf("HELLO!\n");
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
班丘湘灵0f3
2013-04-19 · 超过23用户采纳过TA的回答
知道答主
回答量:114
采纳率:0%
帮助的人:61.9万
展开全部
#include <stdio.h> ///标准头文件
printst() /////放在调用函数前面,当然也可以写在后面,但是在调用前要申明一下
{
printf("****************\n");
}
print_hello()
{
printf("HELLO!\n");
}

main()
{
printst();
print_hello();
printst();
}
追问
要是我放在后面要怎么申明?void main()?
追答
#include "stdio.h"
void printst();
void print_hello();

main()
{
printst();
print_hello();
printst();
}
printst()
{
printf("****************\n");
}
print_hello()
{
printf("HELLO!\n");
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
知道不知道巨蟹
2013-04-19 · 超过17用户采纳过TA的回答
知道答主
回答量:77
采纳率:0%
帮助的人:45.8万
展开全部
#include "stdio.h"
printst(){
printf("****************\n");

}
print_hello()
{
printf("HELLO!\n");

}
void main()
{
printst();
print_hello();
printst();
}
你只调用了 没申明啊 自习看下书吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友3a43902
2013-04-20
知道答主
回答量:45
采纳率:0%
帮助的人:19万
展开全部
#include "stdio.h"

改成#inlcuce<stdio.h>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(4)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式