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