标签:sprintf 出现 mes int ring and tab 整型 标准
由于C语言中并不像C++、python、Java等已经集成好 string 类,因此使用“数组型字符串”的时候时常会出现问题。
现在以标准c语言中的数字转换成字符串为例。直接上代码。
1 #include<iostream> 2 #include<string.h> 3 using namespace::std; 4 5 //sprintf 用于格式化输出字符串 6 //假设现在有两个整型数据 183 70 我们想把它变为一个字符串 “身高:183cm,体重:70kg”,那么可以用sprintf做到 7 8 int main() 9 { 10 int height = 183, weight = 70; 11 char table_height_and_wight[100]; 12 sprintf_s(table_height_and_wight, "身高:%dcm体重:%dkg", height, weight); 13 cout << table_height_and_wight << endl; 14 cout << strlen(table_height_and_wight) << endl; 15 return 0; 16 }
标签:sprintf 出现 mes int ring and tab 整型 标准
原文地址:https://www.cnblogs.com/Rebel3/p/13169739.html