C语言和C++的不同
struct Student{
int a;
};
//C语言创建时需要
struct student stu1;
//C++
student stu2;
2.用typdef时:
typdef struct student
{
int a;
}stu;
//C语言和c++关于typdef时一样的,都是把stu看作是struct student的别名
struct Student{
int a;
};
//C语言创建时需要
struct student stu1;
//C++
student stu2;
typdef struct student
{
int a;
}stu;
//C语言和c++关于typdef时一样的,都是把stu看作是struct student的别名