17-11-2005, 02:05 PM
why are the following expressions are compliant/not compliant
u8a = 5U - compliant(u8a=u16b - not compliant at the same time)
u8a = 5UL not compliant
it is not a conversion to a wider integer type of the same signedness as in 10.1 a)
It is more an implicit conversion from wider to narrower types.
And why in one case it is compliant, and in another one not compliant.
u8a = 5U - compliant(u8a=u16b - not compliant at the same time)
u8a = 5UL not compliant
it is not a conversion to a wider integer type of the same signedness as in 10.1 a)
It is more an implicit conversion from wider to narrower types.
And why in one case it is compliant, and in another one not compliant.