fork download
  1. #include <stdio.h>
  2. int add(int a, int b, int c)
  3. {
  4. return a + b + c;
  5. }
  6.  
  7. int main()
  8. {
  9. int x;
  10.  
  11. x = add(1, 2, 3);
  12.  
  13. printf("%d\n", x);
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
6