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