Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 30, 2020 00:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/47822e8d11e7086b2d6ca1cf78edb899 to your computer and use it in GitHub Desktop.
Save parzibyte/47822e8d11e7086b2d6ca1cf78edb899 to your computer and use it in GitHub Desktop.
// Terminamos de leer
fclose(archivo);
// Ahora ya tenemos el arreglo. Podemos imprimirlo
int i;
for (i = 0; i < CANTIDAD_LINEAS; i++)
{
printf("Tenemos una línea: '%s'\n", palabras[i]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment