fork download
  1. #include <stdio.h>
  2.  
  3. // What is this function called in C99?
  4. // Is this valid?
  5. int func(n) int n;
  6. {
  7. return n+1;
  8. }
  9.  
  10. int main()
  11. {
  12. printf("%d", func(42));
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 1676KB
stdin
Standard input is empty
stdout
43