fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int tb[2],*p=tb;
  6. printf("%p : %p\n",p,p+1);
  7. printf("%d : %d\n",p,p+1);
  8. return 0;
  9. }
Success #stdin #stdout 0s 4292KB
stdin
Standard input is empty
stdout
0x7ffdc0f7c170 : 0x7ffdc0f7c174
-1057504912 : -1057504908