Home > database >  New, not assembly, for big solutions
New, not assembly, for big solutions

Time:10-01

//input after the two strings s1 and s2, connect them fore and aft, not using strcat function implementation

CodePudding user response:

You sent to BBS, c + + is used here.

CodePudding user response:

Oh, yes, I'm sorry & lt; (_ _) & gt; Without even knowing, loose hair

CodePudding user response:

Can "posts,

#include
#include

Int main ()
{
Char SRC [50], dest [50];

Strcpy (SRC, "This is the source");
Strcpy (dest, "This is destination");

Strcat (dest, SRC);

Printf (" the end goal string: | | % s ", dest);

Return (0);
}
Final target string: | This is destinationThis is source |