关于C++的结构的问题
结构体类型和结构体变量有什么区别
参考答案:哥们你不应该问区别,应该问关系
struct student
{
public:
char name[20];
int age;
};
student s 相当于 int a;
只不过student是一种自定义数据类型吧了
结构体类型和结构体变量有什么区别
参考答案:哥们你不应该问区别,应该问关系
struct student
{
public:
char name[20];
int age;
};
student s 相当于 int a;
只不过student是一种自定义数据类型吧了