2013年9月28日
摘要: 有时把数值和字符串转换一下能方便很多地处理一些问题,例如检测一个整型数中是否包含一个某一个数字等等这时需要用到以下函数包含在头文件stdlib.h中函数名 函数定义格式 函数功能atof double atof(char) 字符串转为双精度浮点数atoi int atoi(char) 字符串转为整型数atol long atol(char) 字符串转为长整型atoll long long atoll(char) 字符串转为长长整型(64位)itoa itoa(int,char*,int) 整型转为字符串,第一个int是整型数... 阅读全文
posted @ 2013-09-28 19:05 someblue 阅读(3389) 评论(0) 推荐(0) 编辑