Welcome..!!

Please visit http://csprograms.in/ for more Computer Science programs.

Wednesday 14 March 2012

15. C++ program to copy string.


# include < iostream>
# include < string>
int main()
{
char str1[30], str [30];
cout << “Enter the string:” ;
cin >> str1;
strcpy( str2, str1);
cout << “strcpy (str2, str1) : “< < str2;
return 0;
}

No comments:

Post a Comment