Main.cc: In function 'int main()':
Main.cc:12:15: warning: comparison with string literal results in unspecified behavior [-Waddress]
12 | if (gender == "M") {
| ~~~~~~~^~~~~~
Main.cc:12:15: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
Main.cc:17:22: warning: comparison with string literal results in unspecified behavior [-Waddress]
17 | if ( loveExercise == "Y") {
| ~~~~~~~~~~~~~^~~~~~
Main.cc:17:22: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
Main.cc:20:8: error: 'goodDeal' was not declared in this scope; did you mean 'goodDear'?
20 | if (goodDeal == "Y") {
| ^~~~~~~~
| goodDear
Main.cc:9:9: warning: unused variable 'goodDear' [-Wunused-variable]
9 | char goodDear;
| ^~~~~~~~