结构体的问题
#include"stdio.h"struct st
{
int a;
char b;
};
struct st fun(struct st x);
{
x.a=99;
x.b='s';
return(x);
}
main()
{
struct st y;
y.a=0;
y.b='A'
printf("%d,%c",x.a,x.b);
y=fun(y);
printf("%d,%c",x.a,x.b);
}
运行后出现:
>正在编译...
1>34.C
1>h:\我的程序\as\34.c(8) : error C2449: 在文件范围内找到“{”(是否缺少函数头?)
1>h:\我的程序\as\34.c(12) : error C2059: 语法错误 : “}”
1>生成日志保存在“file://h:\我的程序\as\Debug\BuildLog.htm”
1>as - 2 个错误,0 个警告