Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/c/concepts/operators/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ Misc operators don't fit into a particular category.

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