-
-
Save parzibyte/aff1c41a3e78fb1ee2e4fd011759673a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Asignar datos | |
personas[0].altura = 1.2; | |
personas[0].edad = 20; | |
strncpy(personas[0].nombre, "Luis Cabrera Benito", MAXIMA_LONGITUD_CADENA); | |
personas[1].altura = 2.1; | |
personas[1].edad = 30; | |
strncpy(personas[1].nombre, "Leon Scott Kennedy", MAXIMA_LONGITUD_CADENA); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment