首页 > 代码库 > Ubuntu下int转字符串
Ubuntu下int转字符串
# include <stdio.h> # include <stdlib.h> void main (void) { int num = 100; char str[25]; sprintf(str,"%d",num); printf("The number ‘num‘ is %d and the string ‘str‘ is %s. \n" ,num, str); }
在Linux系统中并不支持itoa()和ltoa(),它们并不是C的标准库函数,只能在windows下使用。
● itoa():将整型值转换为字符串。
● ltoa():将长整型值转换为字符串。
本文出自 “帆布鞋也能走猫步” 博客,请务必保留此出处http://9409270.blog.51cto.com/9399270/1946387
Ubuntu下int转字符串
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。