fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int arr[2];
  5.  
  6. printf("%p\n", arr);
  7. printf("%p\n", arr + 1);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 2052KB
stdin
Standard input is empty
stdout
0xbfbea8e8
0xbfbea8ec