来自董平的问题
若程序中有下面的说明和定义,则会发生的情况是编译出错.structabc{intx;chary;}structabcs1,s2;为什么会编译出错啊?
若程序中有下面的说明和定义,则会发生的情况是编译出错.
structabc
{
intx;
chary;
}
structabcs1,s2;
为什么会编译出错啊?


若程序中有下面的说明和定义,则会发生的情况是编译出错.structabc{intx;chary;}structabcs1,s2;为什么会编译出错啊?
若程序中有下面的说明和定义,则会发生的情况是编译出错.
structabc
{
intx;
chary;
}
structabcs1,s2;
为什么会编译出错啊?
少个分号
structabc
{
intx;
chary;
};
structabcs1,s2;