InterviewSolution
Saved Bookmarks
| 1. |
Explain the term type casting. |
|
Answer» Type Casting: Explicit Conversion of one data type to another is called type casting. It is done by type casting operators. Example: int a; double b = 9.8 a = (int) b; |
|