C++
Programming and Technical
What do you mean by implicit conversion?
Read Solution (Total 1)
-
- Implicit casting doesn't require a casting operator. This casting is normally used when converting data from smaller integral types to larger or derived types to the base type.
int x = 123;
double y = x;
the conversion of data from int to double is done implicitly - 10 years agoHelpfull: Yes(0) No(0)
C++ Other Question