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