sprintf函数——CC3200项目中使用

函数功能:把格式化的数据写入某个字符串
函数原型:int sprintf( char *buffer, const char *format [, argument] … );
返回值:字符串长度(strlen)

例子:
char* who = "I";
char* whom = "CSDN";
sprintf(s, "%s love %s.", who, whom); //产生:"I love CSDN. "  这字符串写到s中

在CC3200项目中用到:sprintf(acSendBuff,"/WeChat/cc3200/upload_and_get.do?temperature=%.2f",TempValue);  往
acSendBuff字符串数组中写入字符串,实现将温度值的上传,并且获取最新状态。

你可能感兴趣的:(sprintf,C语言,功能,cc3200)