Explore a diverse range of topics and get expert answers on IDNLearn.com. Our Q&A platform offers reliable and thorough answers to help you make informed decisions quickly and easily.
Answer:
The prototype is as follows:
void showSeatingChart (string seatingChart[][40]);
Explanation:
Required
The prototype of a function that accepts a 2D array
The syntax to do this (in C++) is as follows:
return-type function-name(array-type array-name[][Column])
Hence, the function prototype is:
void showSeatingChart (string seatingChart[][40]);