EasyManua.ls Logo

WhalesBot Eagle - Page 33

Default Icon
44 pages
Print Icon
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Loading...
32
condition is run. If not, the
subsequent coding block is
executed.
If ...
then...
else ...
The if(condition) ... else ...
statement in C programming
allows execution controlled by
a condition. If the condition is
met, the code following the if
clause is run. If not, the code
following the else clause is run.
<
Perform a “less than”
comparison between two
parameters, variables, or
conditions.
>
Perform a “greater than”
comparison between two
parameters, variables, or
conditions.
=
Evaluate equality between two
parameters, variables, or
conditions.
Not
equal
Assess the inequality between
two parameters, variables, or
conditions.
And
Apply a logical AND to two
conditions. If both conditions
are true, the outcome is true. If