fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int x[10] = {0};
  5.  
  6. scanf("%d", x);
  7. scanf("%d", (x+9));
  8.  
  9. for (int i = 0; i < 10; i++){
  10. printf("x[%d]:%d ", i, *(x+i));
  11. }
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5288KB
stdin
1 2
stdout
x[0]:1 x[1]:0 x[2]:0 x[3]:0 x[4]:0 x[5]:0 x[6]:0 x[7]:0 x[8]:0 x[9]:2