 |
C - string.h library functions « fresh2refresh.com fresh2refresh.com
1 strcat(str1, str2) Concatenates str2 at the end of str1. 2 strcpy(str1, str2) Copies str2 into str1 3 strlen(strl) gives the length of str1. 4 strcmp(str1, str2) Returns 0 if str1 is same as str2. Returns 0 if str1 > str2. 5 strchr(str1,char)
fresh2refresh.com |
 |