InterviewSolution
Saved Bookmarks
| 1. |
The value of ‘i’ after execution of the following C++ expressions:float i, j, k;j = 200.02;k = 100.03;i = j + k; |
|
Answer» 300.05 |
|