Alright well my program only seems o work when i have a switch statement in place but it won take a string type as an answer so how would i convert a string to a char
yeah i found that out the hard way , but it would seem when i did a if/else chain it would combined both the review() and the nodevelopment() together but it didn't with a switch so i just needed that char to help me out there, so thank yo for the help I can't believe i didn't see it myself .
The string class has a c_str() method that returns the equivalent of a pointer-based character string. If I remember correctly, we can use c-style strings in switch statements.