C语言struct的使用

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;]

原文地址:https://www.cnblogs.com/macula7/p/1960732.html