fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x[10]={0};
  5. int s,t;
  6. scanf("%d",&s);
  7. scanf("%d",&t);
  8. int *p,*b;
  9. p=&x[0];
  10. b=&x[9];
  11. *p=s;
  12. *b=t;
  13.  
  14. for(int i=0;i<10;i++){
  15. printf("x[%d]:%d\n",i,x[i]);
  16. }
  17.  
  18.  
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0.01s 5288KB
stdin
31
21
stdout
x[0]:31
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]:21