fork(2) download
  1. #include <stdio.h>
  2.  
  3. int a;
  4. int* b;
  5.  
  6. int main()
  7. {
  8. int d = 7;
  9. b = &d;
  10. a = (int)b;
  11. }
Success #stdin #stdout 0s 4468KB
stdin
Standard input is empty
stdout
Standard output is empty