I made a login program on CppDroid then tried to reconstruct it for turbo c++ 3.2 use, well, i failed. So can someone give me hints on getting this right.
Here's my code it works yeah but not on turbo c++ :(
I don't think Turbo C++ knows anything about namespace std. More problematic, I don't think it has the string class that is part of standard C++. Back in those dusty ancient days when Turbo C++ was written for DOS and later the new-fangled Windows 3.1, such things had hardly been dreamed of - at least they were not standardised at that time.
Note that you need to be much more careful when doing it this way. Arrays don't automatically resize themselves so you have to make sure you make them large enough.