I ran into a bug on my program that I couldn't find on my own so I decided to transfer my project from Dev C++ to Microsoft Visual Studio.
In Dev I got away with
string sName;
cin >> sName;
But MVS doesn't like doing that. What is the substitute for comparing and saving user inputed strings?
Also:
srand(time(0));
was what I used to grab the internal clock to create random numbers, but in visual studio, it doesn't recognize that command.
Any help is greatly appreciated