C字符串函数运用(strlen-strcpy-strcat-strncat-strcmp-strrev-strlwr-strupr-strchr-strstr)一:基本概念 二:声明打印字符串三:输入gets()打印puts()函数四:常用字符串函数
文章目录:一:基本概念1.占用内存2.字符串的初始化3.字符串与指针4.字符串的输出二:声明打印字符串1.声明2.打印字符串三:输入gets()打印puts()函数1. 输入gets()函数2.打印puts()函数四:常用字符串函数1.strlen()函数2.strcpy(destination,source)函数3.strcat(first_string, second_string)函数4.字符串拼接(strncat)函数5.st...