diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-01 05:24:18 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-01 05:24:18 +0000 |
commit | b27e1c2de44ad1ace3ea619051d106c8d7bd8a33 (patch) | |
tree | 33702a045f41d73dfc3a3c0dd7b116b265c977e4 | |
parent | 52468041b5aadca8b2bdd27b4292417d82ba5848 (diff) |
Thu, Nov 30, 2023, 9:24 PM -08:00
-rw-r--r-- | if.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ if (x < y) { printf("x is less than y\n"); } else if (x > y) { printf("x is greater than y\n"); -} else if (x == y) { +} else { printf("x is equal to y\n"); } } |