diff options
| author | David Moc <personal@cdatgoose.org> | 2026-03-05 23:38:49 +0100 |
|---|---|---|
| committer | David Moc <personal@cdatgoose.org> | 2026-03-05 23:38:49 +0100 |
| commit | 0385817bb1301a778bb33f8405a435293b9f8905 (patch) | |
| tree | 53f4b6f13e393bd368c37ba4363826b46940dfd3 /tests/logical.c | |
| parent | 262abf9b552a168ef3ae91f91af97683f16420a7 (diff) | |
Pushing to repo for safety.
Diffstat (limited to 'tests/logical.c')
| -rw-r--r-- | tests/logical.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/logical.c b/tests/logical.c new file mode 100644 index 0000000..6bd1018 --- /dev/null +++ b/tests/logical.c @@ -0,0 +1,14 @@ +int main() { + int a = 1; + int b = 0; + int c = 1; + + int and1 = a && b; + int and2 = a && c; + int or1 = a || b; + int or2 = b || b; + int not1 = !a; + int not2 = !b; + + return and1 + and2 + or1 + or2 + not1 + not2; +} |
