fork download
  1. #include <stdio.h>
  2.  
  3. int *a(void) {
  4. static int a;
  5. printf("a");
  6. return &a;
  7. }
  8.  
  9. int f(void) {
  10. printf("b");
  11. return 42;
  12. }
  13.  
  14. int main(void) {
  15. ++*a() * f();
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
ab