In school I use Visual Studio 2010 and I have no problem with the "get" function, but I downloaded VS community to practice in my home (as I understand it's VS2015 or similar) and the I can't run the same code I did in VS2010. Did you know an equivalent function or another to do the same?
1 2 3 4 5 6
char Names[70];
cout<<"Write your name(s)"<<endl;
gets (Names);
cout<<"Your name is: "<<endl;
That's a short example of what I want to do.
It's a project in Win32 console
Thanks