PUERTA | PUERTA 2006 | Pregunta 49
¿Cuál de las opciones dadas a continuación se imprimirá cuando se ejecute el siguiente programa? #include <stdio.h> struct test { int i; char *c; }st[] = {5, «become», 4, «better», 6, «jungle», 8, «ancestor», 7, «brother»}; main () { struct test *p = st; p += 1; ++p -> c; printf(«%s,», p++ -> c); printf(«%c,», … Continue reading «PUERTA | PUERTA 2006 | Pregunta 49»