From ae4c1af949c7230c07b2a7cc86a2e4031c37f651 Mon Sep 17 00:00:00 2001 From: Cody Date: Sun, 25 Jun 2023 23:23:04 -0500 Subject: getting loopy --- test.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'test.c') diff --git a/test.c b/test.c index 3a39c44..26925e0 100644 --- a/test.c +++ b/test.c @@ -1,11 +1,13 @@ #include -int add(int, int); -int subtract(int, int); +long long hehehaha(); + +long long addz(long long lhs, long long rhs) { + return lhs + rhs + 1; +} int main() { - int a = add(5, 2); - int b = subtract(3, 8); - printf("%d %d\n", a, b); + long long res = hehehaha(); + printf("%d\n", res); return 0; } -- cgit v1.2.3