fork download
  1. #include <stdio.h>
  2.  
  3. int three()
  4. {
  5. return 3;
  6. }
  7.  
  8. int main()
  9. {
  10. int x;
  11.  
  12. x = three();
  13.  
  14. printf("x=%d\n", x);
  15.  
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
x=3