Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 15, 2022 03:29
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/4c7b2a5d3267d1f716ddbf442e164f4d to your computer and use it in GitHub Desktop.
Save parzibyte/4c7b2a5d3267d1f716ddbf442e164f4d to your computer and use it in GitHub Desktop.
void imprimirLista(struct NodoDeLista *nodo)
{
while (nodo != NULL)
{
printf("Encontramos un nombre en la lista: '%s'\n", nodo->nombre);
nodo = nodo->siguiente;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment