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