i am having trouble with testing to see if aData is equal to
exit i have tried a few diffrent things the only thing i
have relized is that the compiler say that aData is a multi character constant any help is greatly appreciated
while (exit != 1)
{
char aData = aPort.read ();
cout << aData;
if(aData == 'EXIT')
{
exit = 1;
}
}