Explorar el Código

fix ex2

master
RinRi hace 1 año
padre
commit
c114cc41ec
Se han modificado 2 ficheros con 2 adiciones y 0 borrados
  1. BIN
      week02/ex2
  2. +2
    -0
      week02/ex2.c

BIN
week02/ex2 Ver fichero


+ 2
- 0
week02/ex2.c Ver fichero

@@ -12,7 +12,9 @@ int main() {
s[i] = '\0';
// i is already the size of s. I've used strlen to follow the 'hints'
// section.
putc('\"', stdout);
for (i = strlen(s) - 1; i >= 0; --i) {
putc(s[i], stdout);
}
putc('\"', stdout);
}

Cargando…
Cancelar
Guardar