fork(2) download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int *ptr;
  6. int b=2;
  7.  
  8. ptr = b;
  9. printf("%p\n", ptr);
  10.  
  11. ptr = &b;
  12. printf("%p\n", &b);
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
0x2
0xbfd0bc2c