fork download
  1. #include <stdio.h>
  2.  
  3. int fun(int a, int b)
  4. {
  5. return a+b;
  6.  
  7. }
  8.  
  9. int main(void) {
  10. // your code goes here
  11. printf("%d",fun(2,3));
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
5