which operator is used to represent less than or equal to condition in qb64
Answers
Answered by
40
The operator is <= and is a relational operator.
Answered by
4
- To check conditions in qb64 we use IF statements.
IF(condition)
statement 1
ELSE
statement 2
- statement 1 will execute only if the condition for if is true.
- Operators are used to create comparisons for the conditions.
- List of operators:
- < Less than
- <= Less than or equal to
- > Greater than
- >= Greater than or equal to
- = Equal to
- <> Not Equal to
Similar questions