This website works better with JavaScript
Inicio
Explorar
Ayuda
Iniciar sesión
noah
/
texdiary
Seguir
1
Destacar
0
Fork
0
Archivos
Incidencias
0
Pull Requests
0
Wiki
Explorar el Código
add c helloworld sample program
Noah Vogt
hace 3 años
padre
ab36b96341
commit
5e9fc4228c
Se han
modificado 1 ficheros
con
6 adiciones
y
0 borrados
Dividir vista
Mostrar estadísticas de diff
6
0
maturText/helloworld.c
+ 6
- 0
maturText/helloworld.c
Ver fichero
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+ printf("Hello World\n");
+ return 0;
+}