fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int QQ[10];
  6.  
  7. printf("1. %p\n", QQ);
  8. printf("2. %p\n", QQ+1);
  9. printf("3. %p\n", &QQ+1);
  10. printf("4. %p\n", QQ+10);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
1. 0xbf882f48
2. 0xbf882f4c
3. 0xbf882f70
4. 0xbf882f70