Write a C program that demonstrates implicit and explicit type conversion between an integer and a float.
Write a C program that demonstrates implicit and explicit type conversion between an integer and a float.
Assigning the integer to a float performs implicit conversion.
The expression (int)value performs explicit conversion
and removes the fractional part.
Implicit conversion = 5.00
Explicit conversion = 9