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