What will be the value of 'i' after execution of the following C++ expressions:
float i, j, k;
j= 200.02;
k=100.03;
i=j+k
Answers
Answered by
1
Answer:- I=j+k
I=200.02+100.03
I=300.5
Similar questions