码迷,mamicode.com
首页 > 其他好文 > 详细

c itoa和atoi

时间:2014-06-07 03:32:09      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

bubuko.com,布布扣
#include <iostream>
using namespace std;
int main()
{
#if 1
    int num = 12345;
    char str[25];//不要写成char*,因为没有分配空间
    itoa(num, str, 10);//10进制字符串
    printf("num = %d, str = %s\n", num, str);
    itoa(num, str, 16);//16进制字符串
    printf("num = %d, str = %s", num, str);
#else
    int n;
    char* str = "123";
    n = atoi(str);
    printf("n = %d", n);
#endif
    getchar();
    return 0;
}
//在使用c字符串库函数时后面需要加上null,strcmp,strcat,strcpy等。关于char*和char[]区别啥的太蛋疼了
//只要记住在char*的地方需要传入char[]数组就行了
bubuko.com,布布扣

之前对于这个itoa总有点害怕的感觉

c itoa和atoi,布布扣,bubuko.com

c itoa和atoi

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/zzyoucan/p/3756058.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!