fork download
  1. #include<stdio.h>
  2.  
  3.  
  4. int main() {
  5. int* tab = (int*)calloc(80, sizeof(int));
  6. *(tab + 3) = 100;
  7. for (int i = 0; i < 80; i++) if(tab[i] != 0) printf("%d -> %d\n", i, tab[i]);
  8. return 0;
  9. }
Success #stdin #stdout 0s 2288KB
stdin
Standard input is empty
stdout
3 -> 100