Multiple choice The rule for implicit type conversion in 'C' is int < unsigned < float < double unsigned < int < float < double int< unsigned < double < float 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.