what is implicit and explicit data type conversion???? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

what is implicit and explicit data type conversion????

16th Jul 2016, 9:59 AM
Taz Khan
Taz Khan - avatar
2 Answers
+ 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
16th Jul 2016, 12:46 PM
Karan Luther
Karan Luther - avatar
+ 2
Pls don't use explicit C type casts as Karan suggested. There have been plenty of posts concerning proper casting in this forum.
16th Jul 2016, 3:12 PM
Stefan
Stefan - avatar