Answer: provide more info
Explanation:
your answer is c to what your looking for
It has to be two people answering.Then vote braniest to who's answer you think is better.
Answer:
See explaination
Explanation:
void showSeatingChart(string seatingChart[20][40], const int ROWS, const int COLS){
for(int i = 0;i<ROWS;i++){
for(int j = 0;j<COLS;j++){
cout<<seatingChart[i][j]<<" ";
}
cout<<endl;
}
}