摘要: #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; (*(... 阅读全文
posted @ 2012-05-02 18:04 Leo Forest 阅读(1851) 评论(0) 推荐(0) 编辑