struct SIMPLE{
int a;
int b;
float c;
};
struct SIMPLE x;
struct SIMPLE y[20.*c
另一种简单的方式:
typedef struct{
int a;
int b;
float c;
}Simple;
Simple x;
Simple y[20,*x;]
struct SIMPLE{
int a;
int b;
float c;
};
struct SIMPLE x;
struct SIMPLE y[20.*c
另一种简单的方式:
typedef struct{
int a;
int b;
float c;
}Simple;
Simple x;
Simple y[20,*x;]