Computer Science, asked by lakshmisrikar123, 4 months ago

1. Given that x = 7.5, j = -1.0, n = 1.0, m = 2.0, write a program to evaluate the expression: -- x + j == x>n> = m and display the value of expression. ​

Answers

Answered by mrinmoychakraborty11
6

Explanation:

int x, j, n, m;

x=7.5,j=-1.0,n=1.0,m=2.0;

if(--x+ j==x) &&(x>n>=m)

{ printf("%f,%f,%f",x,j,m);

}

Similar questions