Final for C

This commit is contained in:
Ajay T Shaju
2023-09-18 22:36:03 +05:30
parent 8e3299d2df
commit 984b1b0282
2 changed files with 5 additions and 72 deletions

View File

@@ -158,9 +158,9 @@ In Linux systems:
| `!=` | Not equal, result is true or false, `a != b` |
| `&` | Bitwise and, `a & b` |
| `^` | Bitwise exclusive or, `a ^ b` |
| | | Bitwise or, `a | b` |
| | | Bitwise or, `a` | `b` |
| `&&` | Relational and, result is true or false, `a < b && c >= d` |
| &#124; &#124; | Relational or, result is true or false, `a < b || c >= d` |
| &#124; &#124; | Relational or, result is true or false, `a < b` &#124; &#124; `c >= d` |
| `?` | Ternary conditional, `exp1 ? exp2 : exp3`, result is `exp2` if `exp1` is not 0, else result is `exp3` |
| `=` | Store |
| `+=` | Add and store |
@@ -191,11 +191,11 @@ In Linux systems:
| LR | `==`, `!=` |
| LR | `&` |
| LR | `^` |
| LR | `|` |
| LR | &#124; |
| LR | `&&` |
| LR | `||` |
| LR | &#124; &#124; |
| RL | `? :` |
| RL | `=`, `+=`, `-=` ,`*=`, `/=`, `%=`, `>>=`, `<<=`, `&=`, `^=`, `|=` |
| RL | `=`, `+=`, `-=` ,`*=`, `/=`, `%=`, `>>=`, `<<=`, `&=`, `^=`, &#124;= |
| LR | `,` |
@@ -229,6 +229,4 @@ In Linux systems:
statement_sequence /* the expression. This is optional */
}
---
---