aboutsummaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test.c')
-rw-r--r--test.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test.c b/test.c
new file mode 100644
index 0000000..3a39c44
--- /dev/null
+++ b/test.c
@@ -0,0 +1,11 @@
+#include <stdio.h>
+
+int add(int, int);
+int subtract(int, int);
+
+int main() {
+ int a = add(5, 2);
+ int b = subtract(3, 8);
+ printf("%d %d\n", a, b);
+ return 0;
+}