InterviewSolution
Saved Bookmarks
| 1. |
How will the number x=:286 displayed on the monitor? |
|
Answer» If the statement is printf(“% d”,x); then it displays 998, instead if the statement is printf(“% f’,x); then it displays 9.98286e02. |
|