Quellcode durchsuchen

add c helloworld sample program

Noah Vogt vor 3 Jahren
Ursprung
Commit
5e9fc4228c
1 geänderte Dateien mit 6 neuen und 0 gelöschten Zeilen
  1. 6 0
      maturText/helloworld.c

+ 6 - 0
maturText/helloworld.c

@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+    printf("Hello World\n");
+    return 0;
+}