This website works better with JavaScript
Inicio
Explorar
Axuda
Iniciar sesión
noah
/
texdiary
Seguir
1
Destacar
0
Fork
0
Ficheiros
Incidencias
0
Pull Requests
0
Wiki
Explorar o código
add c helloworld sample program
Noah Vogt
%!s(int64=3) %!d(string=hai) anos
pai
ab36b96341
achega
5e9fc4228c
Modificáronse 1 ficheiros
con
6 adicións
e
0 borrados
Dividir vista
Mostrar estatísticas de 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;
+}