fork download
  1. #include <stdio.h>
  2. int sum(int m,int n){
  3. return m+n;
  4. }
  5. int main(void) {
  6. // your code goes here
  7. int m=3,n=2;
  8. printf("%d",sum(m,n));
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
5