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