This website works better with JavaScript
Página Principal
Explorar
Ajuda
Iniciar Sessão
noah
/
texdiary
Vigiar
1
Colocar Estrela
0
Fork
0
Ficheiros
Problemas
0
Pull Requests
0
Wiki
Ver Fonte
add c helloworld sample program
Noah Vogt
há 3 anos atrás
pai
ab36b96341
commit
5e9fc4228c
1 ficheiros alterados
com
6 adições
e
0 exclusões
Visão Dividida
Mostrar Estatísticas Diff
6
0
maturText/helloworld.c
+ 6
- 0
maturText/helloworld.c
Ver Ficheiro
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+ printf("Hello World\n");
+ return 0;
+}