I'm sort of mystified (and embarrassed) by this. I'm trying to simply cin a std::string, and when I do, regardless of whether I use cin >> myString or getline(cin, myString), boom!, my program crashes. Now, the funny thing is that the first time this doesn't give me grief. The second cin statement is what causes the trouble. I've declared the string, so I'm not sure what might be causing this. It surely is user error, because when I migrated from VC++ to DevC++, this still happened. Can someone point me in the right direction here? Code below. Thanks in advance!
Ah-ha, indeed! Yeesh *embarrassed*. I'm aware of the differences; I was just poking around trying different things, and this is the reason for the mix-max. Thank you!