摘要: # C字符串函数(二) ### strcpy() **作用:** 拷贝整个字符串 **示例代码:** 拷贝以`q`开头的单词 **截取字符串函数:** ```c char * s_gets(char * st, int n) { char * ret_val; int i = 0; ret_val 阅读全文
posted @ 2023-06-14 01:41 俊king 阅读(15) 评论(0) 推荐(0)