Friday, July 31, 2009

Sample program in C that implements STRING CONCATENATION using "strcat".?

Please provide me a sample program that implements String Concatenation using strcat. Thank you so much.

Sample program in C that implements STRING CONCATENATION using "strcat".?
if i remember right, should be simple.





--------------------------------------...





char str1[20]="hello ";


char str2[]="world";





strcat(str1,str2);





printf("%s\n",str1);





------------------------------------
Reply:http://www.wilsonmar.com/1strings.htm is just what you want my friend,enjoy!...


No comments:

Post a Comment