fork download
  1. #include <stdio.h>
  2.  
  3. int * foo()
  4. {
  5. static int a = 5;
  6. int * b = &a;
  7. printf(" b = %p\r\n", (void *)b);
  8. printf("*b = %i\r\n", *b);
  9. return b;
  10. }
  11.  
  12. int main()
  13. {
  14. int f = 4;
  15. int d = (float)f + .9;
  16. printf("%i", d);
  17. }
  18.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
4