fork download
  1. #include <stdio.h>
  2.  
  3. int pr(void);
  4.  
  5. int main(void) {
  6. int x = pr();
  7. printf(x);
  8. return 0;
  9. }
  10.  
  11. int pr(void) {
  12. int a;
  13. a = 3;
  14. int b;
  15. b = 6;
  16. int c;
  17. c = a+b;
  18. return c;
  19. }
  20.  
Runtime error #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
Standard output is empty