#include <stdio.h>
//typedef个结构体
typedef struct student
{
int age;
int year;
} stu;
//typedef个结构体指针
typedef struct student
{
int age;
int year;
} * string ;
int main()
{
stu stu1={3,3};
string p=&stu1;
printf("%d %d",p->age,p->year);
}请问下,上面哪个地方错了,一直编译不成功。
|