Computer Science, asked by sunny3743, 1 year ago

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 atulkumar122
1

Answer:- I=j+k

I=200.02+100.03

I=300.5

Similar questions