OK, i can't figure out what kind of mistake I've done. Can somebody help me please.
#include<iostream>
#include<iomanip>
using namespace std;
void scedulejeff (char [][4]);
void sceduleanna (char [][4]);
void Print2DArray(char [][4]);
int main()
{
char jeffarray [4][4];
char annaarray [4][4];
char instructor;
cout << "What instructor would you like to scedule a time slot for, for Jeff enter j, for Anna enter a?\n";
cin >> instructor;
if ((instructor==j) || (instructor==J))
{
scedulejeff (jeffarray);
}
if else ((instructor==a) || (instructor==A))
{
scedulejeff (annaarray);
}
else
{
cout << "you entered an invalid charater please enter a 'j' for Jeff or 'a' for Anna.\n";
}
}