...the tree, the data is not inserted.. but it's the address of the char that is there.
Any thoughts about this please?
void readFile(const char *fileName, BST myBST)
{
ifstream inFile; //file object
char temp[10];
inFile.open(fileName, ios::in); //open input file
if (!inFile) {
cerr...