fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int i[2] = {0, 2};
  5. int *p = &i[0];
  6. int j = *p++;
  7. printf("%d\r\n", i);
  8. printf("%d\r\n", j);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 4544KB
stdin
Standard input is empty
stdout
-458602144
0