fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int array[2][2];
  6. array[1][1] = 0xDEADBEEF;
  7. printf("%X\n", *(*(array + 1) + 1));
  8. return 0;
  9. }
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
DEADBEEF