Computer Science, asked by murali6865, 1 year ago

Evaluate the following c++ expression
a=5,b=3,d=1.5,c is integer and f is float
c=d*a+b

Answers

Answered by LuckyYadav2578
2
c = d* a + b
c = 1.5 × 5 + 3
c = 10.5

c is a integer type then c is 10
c= 10

i hope its help
Similar questions