Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
piumarta
/
subc
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
test return from function and printf %d conversion
master
Ian Piumarta
hace 3 meses
padre
7fe0d9d9bf
commit
12fa7c1de6
Se han
modificado 1 ficheros
con
7 adiciones
y
4 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+7
-4
test.txt
+ 7
- 4
test.txt
Ver fichero
@ -1,11 +1,14 @@
#!./main
// -*- C -*-
#!./main -*- C -*-
#include <stdio.h>
int foo(int a)
{
return 42;
}
int main(int argc, char **argv)
{
printf("hello, world\n");
printf("hello, world
%d
\n"
, foo(argc)
);
return 0;
}
Escribir
Vista previa
Cargando…
Cancelar
Guardar