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