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
展开
 我来答
荞馒头
2013-04-19
知道答主
回答量:10
采纳率:0%
帮助的人:1.5万
展开全部
#include "stdio.h"
void main(){
void printst();
void print_hello();
printst();
print_hello();
printst();
}
void printst(){
printf("****************\n");
}
void print_hello(){
printf("HELLO!\n");
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式