字符串
字符串函数
- strcmp()
int strcmp(const char *str1, const char *str2)
返回值
- 如果返回值 < 0,则表示 str1 小于 str2
- 如果返回值 > 0,则表示 str2 小于 str1
- 如果返回值 = 0,则表示 str1 等于 str2
- strcpy()
char* strcpy(char* strDestination, const char* strSource);
- strcpy() 会把 strSource 指向的字符串复制到 strDestination。
- strDestination的空间需要足够大来容纳strSource的数据,否则会溢出
返回值
strDestination中的字符串
3.
4.
字符与数字的转化
字符转数字加‘0’
数字转字符减‘0’
字符数组与字符串
来源:CSDN
作者:Mia@
链接:https://blog.csdn.net/weixin_43008312/article/details/104032186