In my old C++ project I use to use the gets() command. I've done my research and noticed that it is not reliable anymore and my project won't run with using it.
I use this bit of code right here: Load(gets(new char[50]));
How would I now get this line of code to work properly? And if you could provide an explanation.