#include <iomanip>
void viewAllItem(){
clrscr();
cout<<setw(16)<<"Item No"<<setw(8)<<"Menu Item"<<setw(8)<<"Item Price"<<endl<<endl;
for(int x=0;x<index;x++){
itm = itmArr[x];
cout<<endl;
cout<<setw(16)<<itm.IT;
cout<<setw(8)itm.name<<;
cout<<setw(8)<<itm.price<<endl;
}
}