C语言学习08:字符串
字符串的输入和输出
scanf(格式控制,地址列表(变量前加&))
printf(格式控制,地址列表)
gets(字符数组) puts(字符数组)
区别:
gets() 和 puts() : 只能输入或输出一个字符串
scanf() 和 printf() :可以输出多个字符串
字符串连接
strcat(字符数组1,字符数组2)
字符串复制函数
strcpy(字符数组1,字符串2或字符数组名)
strncpy(字符数组1,字符串2或字符数组名,n)
字符串比较函数
strcmp(字符数组1,字符串2或字符数组)
字符串长度函数
strlen(字符串或字符串数组)
字符串转换大小写函数
大写转小写:strlwr(字符数组)
小写转大写:strupr(字符数组)
- Post title:C语言学习08:字符串
- Post author:张建
- Create time:2023-02-15 00:07:57
- Post link:https://redefine.ohevan.com/2023/02/15/C学习/C语言学习08:字符串 2/
- Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.