fork download
  1. #include <stdio.h>
  2. int sum(int a,int b,int c){
  3. return a+b+c;
  4. }
  5. int main(void) {
  6. int s;
  7. s= sum(1,2,3);
  8. printf("%d",s);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0.01s 5324KB
stdin
Standard input is empty
stdout
6