Answers for "what is order in of preeendence in float, int, char, bool"

C++
1

what is order in of preeendence in float, int, char, bool

the correct order is: bool<char<int<float
yes regarding size of data types
bool can only take 0 or 1 as value so it is the smallest
char has 1 byte size likewise others
Posted by: Guest on June-04-2020

Browse Popular Code Answers by Language