fork download
  1. #include <stdio.h>
  2. #define N 5
  3. int main() {
  4. int ban[N]; /* need */
  5. int *po, i;
  6. po = ban; /* change */
  7. for(i = 0; i < N; i++) {
  8. *(po + i) = i;
  9. /* *po = i; po++ : ordinarry */
  10. }
  11.  
  12. for (i = 0; i < N; i++)
  13. printf("%d:%d\n", i, ban[i]);
  14. return 0;
  15. }
  16.  
  17.  
Success #stdin #stdout 0.02s 1676KB
stdin
Standard input is empty
stdout
0:0
1:1
2:2
3:3
4:4