摘要:
#include <stdio.h>#include <stdlib.h>typedef struct sf{ int n; char c;} fc; //定义结构体sf,给他起个别名fc intmain ( int argc, char *argv[] ){ int i = 0; struct sf xx[8]; //一个struct sf组成的数组xx fc * yy; //指向fc类型的指针yy for (i = 0; i < 8; i++) { xx[i].n = i; (*(... 阅读全文