From 65397dc60a2ba1194d8bdb03e0bc9e169e02c0d2 Mon Sep 17 00:00:00 2001 From: ilsix Date: Thu, 4 Apr 2024 21:44:52 +0200 Subject: [PATCH] Tested C --- c/helloworld.c | 1 + c/test.sh | 3 +++ 2 files changed, 4 insertions(+) create mode 100755 c/test.sh diff --git a/c/helloworld.c b/c/helloworld.c index ac98c61..426e99b 100644 --- a/c/helloworld.c +++ b/c/helloworld.c @@ -1,3 +1,4 @@ +//compiles and runs successfully #include int main() { diff --git a/c/test.sh b/c/test.sh new file mode 100755 index 0000000..0fa32a9 --- /dev/null +++ b/c/test.sh @@ -0,0 +1,3 @@ +#!/bin/bash +gcc helloworld.c -o helloworld +./helloworld \ No newline at end of file