fork download
  1. #include <stdio.h>
  2. int mlti(int a,int b){return a*b;}
  3.  
  4. int main(void) {
  5. int a=865,b=750;
  6. printf("this is answer %d", mlti(a,b));
  7.  
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 4536KB
stdin
Standard input is empty
stdout
this is answer 648750