0
点赞
收藏
分享

微信扫一扫

字符串处理函数


char  *strcat (char *s1,char *s2);                             //s2连接到s1后面
int strcmp(const char *s1, const char *s2) ;
char *strcpy(char *s1,const char *s2) ; // s2复制到s1,然后返回s1
int strlen(const char *s);

举报

相关推荐

0 条评论