Step 2 of 5
Define the struct
The struct is the unit you will repeat in inventory and Partial II file exercises.
struct Producto {
int id;
std::string nombre;
double precio;
};
Step 2 of 5
The struct is the unit you will repeat in inventory and Partial II file exercises.
struct Producto {
int id;
std::string nombre;
double precio;
};