#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void)
{
int arr[10];
int idx;
int i;
for(idx=0; idx!=10; idx++){
//scanf("%d",&arr[idx]);
arr[idx]=idx+1;
}
for(idx=0; idx!=10; idx++){
printf("%d ",arr[idx]);
}
system("pause");
return 0;
}
2016.04.02 12:31
배열1 자가진단2 (승민)
조회 수 183 추천 수 0 댓글 0