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