From f3525c2d394852431b82a9d4972d080d2d73bb13 Mon Sep 17 00:00:00 2001 From: yufanzhang <yufazhang@student.unimelb.edu.au> Date: Tue, 28 Feb 2023 14:20:19 +1100 Subject: [PATCH] Created test.c with main() --- test.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test.c diff --git a/test.c b/test.c new file mode 100644 index 0000000..3b7617c --- /dev/null +++ b/test.c @@ -0,0 +1,6 @@ +#include <stdio.h> +int main() +{ + printf("Hello, World!"); + return 0; +} -- GitLab