Multiple choice

The rule for implicit type conversion in 'C' is

  1. int < unsigned < float < double

  2. unsigned < int < float < double

  3. int< unsigned < double < float

  4. unsigned < int < double < float

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The standard C implicit type conversion hierarchy (integer promotion and usual arithmetic conversions) is: int < unsigned < float < double.