fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int arr[5];
  6. // Assume base address of arr is 2000 and size of integer is 32 bit
  7. printf("%u %u", arr + 1, &arr + 1);
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0s 5556KB
stdin
Standard input is empty
stdout
2309592180 2309592196