A) The value of a=5, b=3, d=1.5.
i) double f=a+b/a;
ii) int c=d*a+b;
iii) double c=(a++)*d+++a;
Answers
Answered by
1
Answer:
Here's your answer.
Explanation:
c=(a++)*d+a. c=(5.0)*1.5+6.0 (a++ is an postfix increment operator and not a prefix. that is it will make a change after action so the value.
Similar questions