标题:c程序出了什么问题?
取消只看楼主
lilicup
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2011-12-21
结帖率:100%
已结贴  问题点数:20 回复次数:0 
c程序出了什么问题?
#include<stdio.h>

main()
{    int a=3;
    int func;
    void proc;
   
    proc();
    a=func();
    printf("This is a sample of c program. \n");
    return(0);
}
void proc()
{
    printf("Hello. \n");
}
int func()
{
    return(2);
}
(6) : error C2182: 'proc' : illegal use of type 'void'
(8) : error C2064: term does not evaluate to a function
(9) : error C2064: term does not evaluate to a function
搜索更多相关主题的帖子: void function return 
2012-11-12 17:27



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-386814-1-1.html




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

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