From 0385817bb1301a778bb33f8405a435293b9f8905 Mon Sep 17 00:00:00 2001 From: David Moc Date: Thu, 5 Mar 2026 23:38:49 +0100 Subject: Pushing to repo for safety. --- tests/arithmetic.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/arithmetic.c (limited to 'tests/arithmetic.c') diff --git a/tests/arithmetic.c b/tests/arithmetic.c new file mode 100644 index 0000000..61951d8 --- /dev/null +++ b/tests/arithmetic.c @@ -0,0 +1,10 @@ +int main() { + int a = 5; + int b = 3; + int sum = a + b; + int diff = a - b; + int prod = a * b; + int quot = a / b; + int mod = a % b; + return sum + diff + prod + quot + mod; +} -- cgit v1.2.3