fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int x[10] = {0};
  6.  
  7. printf("x[0]に代入する値:"); scanf("%d",x);
  8. printf("x[10]に代入する値:"); scanf("%d",x+9);
  9.  
  10. printf("代入後の値\n");
  11. for(int i=0; i<=9; i++){
  12. printf("%d\n",x[i]);
  13. }
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 5272KB
stdin
3
8
stdout
x[0]に代入する値:x[10]に代入する値:代入後の値
3
0
0
0
0
0
0
0
0
8