I tried to implement the strcat by myself, and I found the strcat implementation from Wiki like this......but when I use it, there is segmentation fault.
What\'s wro
Allocate enough memory for the destination string.. ie atleast (length of source string + 1).