摘要: #include <stdio.h> typedef struct { long num; char name[10]; double score; } Stu; int main() { Stu stu[3] = {20115602l, "Jerry", 99.5, 20115600l, "Ela 阅读全文
posted @ 2020-06-29 16:47 profesor 阅读(576) 评论(0) 推荐(0) 编辑
摘要: 一: #include <stdio.h> int main(int argc, const char *argv[]) { int i; for (i = 0; i < argc; ++i) { printf("argv[%d] = %s\n", i, argv[i]); } return 0; 阅读全文
posted @ 2020-06-29 16:15 profesor 阅读(1240) 评论(0) 推荐(0) 编辑