Hey, I'm wondering if this is possible. I store customers in an array:
string customer[10];
customer[1] = "Phil";
But I have a menu, that has things like
1. Display customers
2. Add customers
The thing I want to do is not show the 'Display customers' if there has been no customers entered. For example
if customers
then
// display the full menu
otherwise
// only display add customer
end if
Any ideas?