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!...
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment