标签:https printf ref bsp strncmp 表示 int net orm
---恢复内容开始---
字符串部分
字符串末端自带一个字符‘\0‘
puts()函数
输出自带换行
sprintf是个变参函数,定义如下:
int sprintf( char *buffer, const char *format [, argument] … );
详情请看
https://blog.csdn.net/lalala098/article/details/81325487
gets()与fgets()
gets()不储存换行符
fgets(,n,)当n大于输入数据的最大长度时,换行符也作为字符组成部分。
strcmp()与strncmp()函数
字符串比较函数,返回值为0表示二者相同
标签:https printf ref bsp strncmp 表示 int net orm
原文地址:https://www.cnblogs.com/mazili/p/11579318.html