我有一个关于无符号整数的问题。 我想将unsigned int转换为char数组。为此,我使用itoa。问题是itoa与int一起正常工作,而不是unsigned int(unsigned int被作为普通int处理)。 我应该如何将unsigned int转换为char数组?
提前感谢您的帮助!
答案 0 :(得分:5)
使用stringstream是一种常见方法:
#include<sstream>
...
std::ostringstream oss;
unsigned int u = 598106;
oss << u;
printf("char array=%s\n", oss.str().c_str());
答案 1 :(得分:0)
您可以像这样制作自己的功能:
Code Link On Ideone using OWN Function
#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
int main()
{
unsigned int num,l,i;
cin>>num;
l = log10(num) + 1; // Length of number like if num=123456 then l=6.
char* ans = new char[l+1];
i = l-1;
while(num>0 && i>=0)
{
ans[i--]=(char)(num%10+48);
num/=10;
}
ans[l]='\0';
cout<<ans<<endl;
delete ans;
return 0;
}
您还可以使用sprintf
功能(C中的标准)
sprintf(str, "%d", a); //a is your number ,str will contain your number as string