fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int p=10,t=20,r=39,i;
  5. i=(p*t*r)/100;
  6. printf("the value of i is %d",i);
  7. return 0;
  8. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
the value of i is 78