06 2022 档案

摘要:tesk1-1.c #include <stdio.h> #define N 4 int main() { int x[N] = {1, 9, 8, 4}; int i; int *p; for(i=0; i<N; ++i) printf("%d", x[i]); printf("\n"); // 阅读全文
posted @ 2022-06-14 09:10 甜司康饼 阅读(8) 评论(2) 推荐(0)
摘要:tesk1-1.c #include <stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; char author[M]; }Book; int main() { Book x[N] = { {"一九八四", "乔治.奥威 阅读全文
posted @ 2022-06-06 23:03 甜司康饼 阅读(33) 评论(2) 推荐(0)