Skip to content

Commit dcb93f9

Browse files
[Edit] C: Operators
* Update operators.md * Minor changes ---------
1 parent c57fc3b commit dcb93f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/c/concepts/operators/operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ Misc operators don't fit into a particular category.
153153

154154
| Operator | Name | Description |
155155
| :--------: | :------------------: | ------------------------------------------------------------------------------- |
156-
| `sizeof()` | Addition Assignment | `sizeof(x)` returns the size of variable `x`. |
156+
| `sizeof()` | Sizeof Operator | `sizeof(x)` returns the size of variable `x`. |
157157
| `&` | Address | `&x` returns the address of variable `x`. |
158158
| `*` | Pointer | `*x` returns a pointer to variable `x`. Not to be confused with multiplication. |
159159
| `?:` | Conditional Operator | `expression?x:y` returns `x` when `expression` is `true`, `y` otherwise. |

0 commit comments

Comments
 (0)