0
X= 9y / 5+32
How would you write it in C expression?
2 odpowiedzi
+ 10
@computer , firstly U need to which operation U want to perform first ...
9*y/5+32 //if U want to do /5 , not by /(5+32)
9*y/(5+32) //if U want to /37
//* have precedence equal to that of / ... & evaluation is from left to right ... so not used bracket there
//just noticed some gap after & before of / , so might u first wanted to calaculate them ... then divide
+ 7
double x = (9 * y) / 5 + 32