Q. Which of the following type-casting can be “wrapped”?
β
Correct Answer: (C)
int –> char
Explanation: Example:
int i = 48;
char c = (char)i;