+ 1
what is implicit and explicit data type conversion????
2 Respuestas
+ 4
When the type conversion is performed automatically by the compiler such type of conversion is known as implicit type conversion.
and
The type conversion performed by the programmer by posing the data type of the expression of specific type is known as explicit type conversion.
The explicit type conversion is also known as type casting.
( data_type )expression;
i hope that helps goodluck
+ 2
Pls don't use explicit C type casts as Karan suggested. There have been plenty of posts concerning proper casting in this forum.