fork download
  1. #include<stdio.h>
  2. int main( )
  3. {
  4. int si,prin,time,rate;
  5. scanf("%d%d%d",&prin,&time,&rate);
  6. si =(prin*time*rate/100;
  7. printf("%d",si);
  8. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
1000
4
14
compilation info
prog.c:6:24: error: expected ')'
si =(prin*time*rate/100;
                       ^
prog.c:6:5: note: to match this '('
si =(prin*time*rate/100;
    ^
1 error generated.
stdout
Standard output is empty