This website works better with JavaScript
Accueil
Explorer
Aide
Connexion
noah
/
texdiary
Suivre
1
Voter
0
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Wiki
Parcourir la source
add c helloworld sample program
Noah Vogt
il y a 3 ans
Parent
ab36b96341
commit
5e9fc4228c
1 fichiers modifiés
avec
6 ajouts
et
0 suppressions
Vue séparée
Afficher les stats Diff
6
0
maturText/helloworld.c
+ 6
- 0
maturText/helloworld.c
Voir le fichier
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+ printf("Hello World\n");
+ return 0;
+}