InterviewSolution
| 1. |
What Is Implicit Conversion/coercion In C++? |
|
Answer» Implicit conversions are performed when a type (say T) is used in a CONTEXT where a COMPATIBLE type (Say F) is expected so that the type T will be promoted to type F. Implicit conversions are performed when a type (say T) is used in a context where a compatible type (Say F) is expected so that the type T will be promoted to type F. |
|