[Solved] Yes/No always pick the first option (C++) [duplicate]
[ad_1] Something like this? char foo; while(true) { cout<<“again? “; cin<<foo; if(foo == ‘N’ || foo ==’n’) break; else { //Do important stuff } } 1 [ad_2] solved Yes/No always pick the first option (C++) [duplicate]