Good day folks. I have a simple question anout structs. Say for example i have the following:
struct foodmenu
{
char letter;
string food;
double cost;
};
We just started a look at struct and it's really not too clear. So with regards to my example above...how does that replace functions or arrays?