Linux下的c程序---数组、malloc
摘要:
#include <stdio.h>#include <stdlib.h> struct flex{ int count; double average; double scores[]; // 定义可伸缩的数组}; // 声明结构体 void showFlex(const struct flex * p); //定义函数 int main(void){ struct... 阅读全文
posted @ 2010-04-07 22:06 good_hans 阅读(1106) 评论(0) 推荐(1) 编辑