fork(1) download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int x = 5;
  5. int *ptr;
  6. ptr = &x;
  7. printf("%d\n", x);
  8. printf("%d\n", &x);
  9. printf("%d\n", ptr);
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
5
859604804
859604804