InterviewSolution
Saved Bookmarks
| 1. |
Consider the following oat x = 25.56; cout << (int)x; Here the data type of the variable is converted. What type of conversion is this?(a) type promotion(b) type casting (c) implicit conversion (d) None of these |
|
Answer» (b) type casting (explicit conversion); |
|