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