This commit is contained in:
kichukiran97
2019-01-16 02:12:22 +05:30
committed by Tom
parent 4e342714db
commit 844554aab9

View File

@ -91,7 +91,7 @@ int main()
int a = 8, b = 5; int a = 8, b = 5;
bool c = (a > b); // c = true bool c = (a > b); // c = true
``` ```
- `<` Less than - True when the first operand is smaller then the second. - `<` Less than - True when the first operand is smaller than the second.
```C ```C
int a = 5, b = 8; int a = 5, b = 8;
bool c = (a < b); // c = true bool c = (a < b); // c = true