Evaluate the following C++ expressions where a,b,c are integer and d,f are floating point number. The value of a=5,b=3,and d=15
i. F=a+b/a
ii. C=d*a+b
iii. C=(a++)*d+a
iv. f=(++b)*b-a
v. c=a-(b++)*(--a)
Answers
Answered by
0
Answered by
3
a f=5.0
B c=10
C c=12
D f=11.0
E c=-8
Attachments:
Similar questions