--- In [email protected], Paul Herring <pauljherr...@...> wrote: > > On Thu, Mar 5, 2009 at 4:27 PM, Michael Comperchio <mcmp...@...> wrote: > > memset( buffer, 1000, 0); > > strcat(buffer, first_text); > > strcat(buffer, second_text); > > workable
although strcpy(buffer, first_text); strcat(buffer, second_text); would be more efficient (no need to clear buffer first).
