fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. double a,b,c,valx;
  6. a=4.8;
  7. b=9.1;
  8. c=8.1;
  9. valx= a/(b-c);
  10. printf("value of x is %f",valx);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 4384KB
stdin
Standard input is empty
stdout
value of x is 4.800000