Thread
:
copy one string to another??
View Single Post
umair37
Newbie Member
7Mar2012,19:54
how to copy one string into another using LOOPS.(i am talking about default string class)??
the code given below does not work.
please teach me
Code:
void function(string str1) { string str2; int i=0; while(str1[i]!=NULL) { str2[i]=str1[i]; i++; } }
Last edited by shabbir; 7Mar2012 at
20:19
.. Reason:
Code blocks