This website works better with JavaScript
Etusivu
Tutki
Apua
Kirjaudu sisään
noah
/
texdiary
Tarkkaile
1
Äänestä
0
Haarauta
0
Tiedostot
Esitykset
0
Vetopyynnöt
0
Wiki
Selaa lähdekoodia
add c helloworld sample program
Noah Vogt
3 vuotta sitten
vanhempi
ab36b96341
sitoutus
5e9fc4228c
1 muutettua tiedostoa
jossa
6 lisäystä
ja
0 poistoa
Jaettu näkymä
Näytä diff tilastot
6
0
maturText/helloworld.c
+ 6
- 0
maturText/helloworld.c
Näytä tiedosto
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+ printf("Hello World\n");
+ return 0;
+}