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