InterviewSolution
Saved Bookmarks
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
Suppose a C program has floating constant 1.414, what’s the best way to convert this as “float” data type?(A) (float)1.414(B) float(1.414)(C) 1.414f or 1.414F(D) 1.414 itself of “float” data type i.e. nothing else required. |
| Answer» | |