当前位置:首页>维修大全>综合>

c语言中如何将int转化为string类型(c语言把int转成string)

c语言中如何将int转化为string类型(c语言把int转成string)

更新时间:2024-06-22 16:39:46

c语言中如何将int转化为string类型

C语言无string型。C++string是类(class),也不是变量类型。C语言字符型用char型.int型转化为char型用sprintf:例如:intx=1234;charstr[35];sprintf("str,"%d",x);

更多栏目