摘要: 1 #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"); return 0;} 1.2 #include <st 阅读全文
posted @ 2023-05-11 13:16 diremo 阅读(18) 评论(0) 推荐(0) 编辑