串的基本運算
求串長(Length)
int strlen(char *s); //求串s的長度
串復制(Copy)
char *strcpy(char *to
該函數將串from復制到串to中
聯接(Concatenation)
char *strcat(char *to
該函數將串from復制到串to的末尾
串比較(Compare)
int strcmp(char *s
該函數比較串s
字符定位(Index)
char *strchr(char *s
該函數是找c在字符串s中第一次出現的位置
From:http://tw.wingwit.com/Article/program/sjjg/201311/23402.html