#ifndef STRUCT_H
#define STRUCT_H
struct alumno {
    char nombre[50];
    int dni;
    float nota;
};
    
#endif