fork download
  1. #include <stdio.h>
  2.  
  3.  
  4. int multiply_fn(int x,int y) {
  5. return x * y;
  6. }
  7.  
  8.  
  9. int main(void) {
  10. int y = 8;
  11. int x = 9;
  12. int result;
  13.  
  14.  
  15.  
  16. result = multiply_fn(x,y);
  17.  
  18.  
  19. printf("%3d", result);
  20.  
  21.  
  22.  
  23. return 0;
  24. }
  25.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
 72