I have one WORD variable in my program.
WORD hour;
But when I compare It
if(hour>=0 && hour<=18)
{
hour+=6;
}
It will generate warning [Warning] comparison is always true due to limited range of data type
I am using Dev-C++ as IDE.
|
I have one WORD variable in my program.
But when I compare It
It will generate warning [Warning] comparison is always true due to limited range of data type I am using Dev-C++ as IDE. |
|||
|
|
I think the warning is for the comparison
On MSVC++ it is how WORD is defined, check your compiler if it is
1. Note that it doesn't matter whether is |
||||
|
|
|
It seems that |
|||
|
|
|
Depending on what data type WORD is (since you haven't provided it, I assume it is unsigned short), the first comparison is always true since no negative integers fit in an unsigned short. So the compiler told you that the first comparison is more or less, pointless. |
|||
|
|