From 2c3e45a028656c02e3548769c85c4297ad526dae Mon Sep 17 00:00:00 2001 From: Manoj Chandra <163059020+imanojchandra@users.noreply.github.com> Date: Sun, 22 Jun 2025 10:26:10 +0530 Subject: [PATCH 1/2] Update operators.md --- content/c/concepts/operators/operators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/c/concepts/operators/operators.md b/content/c/concepts/operators/operators.md index 8fabfd677a4..d8446b17330 100644 --- a/content/c/concepts/operators/operators.md +++ b/content/c/concepts/operators/operators.md @@ -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. | From f63192cd5e429d040c5095c28b8b96a3dc133f78 Mon Sep 17 00:00:00 2001 From: Sriparno Roy Date: Mon, 30 Jun 2025 12:23:31 +0530 Subject: [PATCH 2/2] Minor changes --- content/c/concepts/operators/operators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/c/concepts/operators/operators.md b/content/c/concepts/operators/operators.md index d8446b17330..23751dbe0d3 100644 --- a/content/c/concepts/operators/operators.md +++ b/content/c/concepts/operators/operators.md @@ -153,7 +153,7 @@ Misc operators don't fit into a particular category. | Operator | Name | Description | | :--------: | :------------------: | ------------------------------------------------------------------------------- | -| `sizeof()` | Sizeof Operator | `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. |