This code is ok on QT SDK (installed on Windows) but reports expected expression error on Xcode 4 (Mac).
#include <iostream>
using namespace std;
int main() {
bool quit = false; // Flag for quitting
while(quit == false) {
cout << "Select a, b, c or q to quit: ";
char response;
cin >> response;
switch(response) {
case 'a' :
cout << "you chose 'a'" << endl;
break;
case 'b' :
cout << "you chose 'b'" << endl;
break;
case 'c' :
cout << "you chose 'c'" << endl;
break;
case 'q' :
cout << "quitting menu" << endl;
quit = true;
break;
default :
cout << "Please use a,b,c or q!" << endl;
}
}
} ///:~
The error is displayed on default instruction: "expected expression".