+3 votes
in Class 11 by kratos

What do you mean by implicit and explicit data type conversion?

1 Answer

+6 votes
by kratos
 
Best answer

Implicit data conversion, the complier automatically converts the data types.(eg) float f; int a; g = a+f it transforms into float

Explicit type casting is done by the user. (eg) char c=’a’, cout << (int) c; Its output would be 97

...