摘要: #include <stdio.h>#include <stdlib.h>#define N 4int main(){ int x[N] = {1,9,8,4}; int i; int *p; for(i=0;i<N;++i) printf("%d",x[i]); printf("\n"); for 阅读全文
posted @ 2022-06-13 17:59 董禹廷 阅读(13) 评论(0) 推荐(0)