I am trying to convert a piece of pseudo code into a C code and I have conditions like
if (-4 <= X <=8)
THEN {Do Something}
else
{Do something else}
<
In C, you cannot write a condition like
if (-4 <= X <= 8) {
// ...
} else {
// ...
}
Instead, you will have to split this into two separate checks:
if (-4 <= X && X <= 8) {
// ...
} else {
// ...
}
This code is now totally fine - you can have whatever operands you'd like on either side of the <=
operator.