主函数中定义的结构体怎样才能在主函数外的函数中使用
#include<stdio.h>main(){structa{inti;}b={1};structaf(structab);b=f(b);}structaf(struc...
#include <stdio.h>
main()
{
struct a{
int i;
}b={1};
struct a f(struct a b);
b=f(b);
}
struct a f(struct a b)
{
b.i++;
return b;
}
VC++编译出错 展开
main()
{
struct a{
int i;
}b={1};
struct a f(struct a b);
b=f(b);
}
struct a f(struct a b)
{
b.i++;
return b;
}
VC++编译出错 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询