| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1318 人关注过本帖
标题:missing function header (old-style formal list?)的错误
取消只看楼主 加入收藏
jack4you
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2011-3-24
结帖率:0
收藏
已结贴  问题点数:20 回复次数:1 
missing function header (old-style formal list?)的错误
VC++6中:
// 1.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
int max(int a, int b);
void main()
{
    int x,y,z;
    int max(int a,int b);
    printf("input two numbers:\n");
    scanf("%d%d",&x,&y);
    z=max(x,y);
    print("maxmum=%d",z);
}
int max(int a,int b);
{
    if(a>b)return a; else return b;
}
运行后出现错误:
:\C语言文件夹\1\1.cpp(12) : error C2065: 'print' : undeclared identifier
E:\C语言文件夹\1\1.cpp(15) : error C2447: missing function header (old-style formal list?)
执行 cl.exe 时出错.
请各位帮忙解释一下。谢谢。
搜索更多相关主题的帖子: C语言 文件夹 
2011-03-24 12:55
jack4you
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2011-3-24
收藏
得分:0 
谢谢ajkido朋友!
2011-03-24 19:44
快速回复:missing function header (old-style formal list?)的错误
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016787 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved