i need a code that copies strings in c++ without using strcpy?
October 10th, 2009 Posted by: admin
another code to compare without using strc
By: jerry l
By: jerry l

October 12th, 2009 at 21:37
Ask yourself:
What is a string?
How can you get a length of existing string?
How can you create a new string of given length?
When you done the above, all you need is to loop through existing string and assign each char to corresponding char in new string…