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