Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 30, 2020 22:48
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/246a0572e08526ebd5984515c13524ed to your computer and use it in GitHub Desktop.
Save parzibyte/246a0572e08526ebd5984515c13524ed to your computer and use it in GitHub Desktop.
// Recorrer
int i;
for (i = 0; i < CANTIDAD_PERSONAS; i++)
{
struct persona personaActual = personas[i];
printf("Nombre: %s. Edad: %d. Altura: %lf\n", personaActual.nombre, personaActual.edad, personaActual.altura);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment