Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 2, 2019 22:19
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/6c716fdd3a73bf5557e41292ba8e415e to your computer and use it in GitHub Desktop.
Save parzibyte/6c716fdd3a73bf5557e41292ba8e415e to your computer and use it in GitHub Desktop.
void imprimir(void) {
printf("Imprimiendo...\n");
struct nodo *temporal = superior;
while (temporal != NULL) {
printf("%d\n", temporal->numero);
temporal = temporal->siguiente;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment