Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: jude123
  • Order by date
  1. jude123

    Need the function of strcat using pointers??

    void mystrcat(char * string1 , char * string2) { while(*string1) string1++; /* go to the end of string1*/ /* copy string 2 at the end of string 1*/ while(*string2) *(string1++) = *(string2 ++) ; }

Part and Inventory Search

Back
Top