Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Se agregan los datos del alumno DE LAS CASAS ESCARDO, Fabiola" #10

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/alumnos.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@

/*=====[Definitions of public global variables]==============================*/

static const struct alumno_s ESTEBAN_VOLENTINI = {
.apellidos = "VOLENTINI",
.nombres = "Esteban Daniel",
.documento = "23.517.968",
static const struct alumno_s FABIOLA_DELASCASAS = {
.apellidos = "DE LAS CASAS ESCARDO",
.nombres = "Fabiola",
.documento = "93.712.282",
};

const alumno_t ALUMNOS[] = {
&ESTEBAN_VOLENTINI,
&FABIOLA_DELASCASAS,
};

const int CANTIDAD_ALUMNOS = (sizeof(ALUMNOS) / sizeof(alumno_t));
Expand Down