Skip to content

Instantly share code, notes, and snippets.

@parzibyte

parzibyte/nodo.c Secret

Created October 15, 2020 18:56
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/d2df848f19377b83c6d62a5e866c5a27 to your computer and use it in GitHub Desktop.
Save parzibyte/d2df848f19377b83c6d62a5e866c5a27 to your computer and use it in GitHub Desktop.
struct nodo {
int numero;
int frecuencia;
struct nodo *siguiente;
};
struct nodo *superior = NULL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment