i have been trying to code a two dimensional array so that it will read from a text file and display the data i am able to get it to read from the text file although it will not display the information. i was able to code it using a string but am having trouble with this two dimensional array.
#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>
using std::ifstream;
using std::ofstream;
using std::endl;
using std::cout;
using namespace std;
class auditorium
{
private:
string seats;
public:
void readSeatsConfig();
void displaySeatsConfig(char[][30], int size );
void getSeatClass(char, char, char, char);
};