summaryrefslogtreecommitdiff
path: root/c/hello_world.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/hello_world.c')
-rw-r--r--c/hello_world.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/c/hello_world.c b/c/hello_world.c
new file mode 100644
index 0000000..648e6b0
--- /dev/null
+++ b/c/hello_world.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+ printf("Hello world!");
+ return 0;
+}