fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int n= multiply (3,2);
  5. printf("product's result is = %d", n);}
  6.  
  7. int multiply (int a, int b)
  8. {int c = a *b;
  9. return c;
  10. }
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
product's result is = 6