Преглед изворни кода

add c helloworld sample program

Noah Vogt пре 3 година
родитељ
комит
5e9fc4228c
1 измењених фајлова са 6 додато и 0 уклоњено
  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;
+}