summaryrefslogtreecommitdiff
path: root/src/c/hello-c/hello.c
diff options
context:
space:
mode:
authorpankunull <panku_null@proton.me>2025-08-25 05:55:36 +0200
committerpankunull <panku_null@proton.me>2025-08-25 05:55:36 +0200
commita0e771c8b5f1e12d4bc3afeb8f40d17e76a4951a (patch)
tree866de5d286acb2de7bd0166c2332792135ffb21e /src/c/hello-c/hello.c
parentbdb05a5943ce75a2ded5f4dbfa16d5e3de29093c (diff)
Added new stuff.
Diffstat (limited to 'src/c/hello-c/hello.c')
-rw-r--r--src/c/hello-c/hello.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/c/hello-c/hello.c b/src/c/hello-c/hello.c
new file mode 100644
index 0000000..c63efdb
--- /dev/null
+++ b/src/c/hello-c/hello.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+main()
+{
+ printf("Hello C\n");
+}