2012-10-28, 09:24 PM
Locked Wrote:Ignore size_t, it's the biggest unsigned size possible on your system.
If you were dealing with strings chances are you would know arrays wouldn't you? const char*, std:tring, and char[] would be the way to initiate a string in C++ (though std:
tring is preferred). Loop should almost be the same, instead you'd probably use getline(std::cin,string) for std:
tring and awful cin.getline for C-style strings.
Nope, I don't know arrays.
I don't even know what anything that starts with std:: means.


tring, and char[] would be the way to initiate a string in C++ (though std: