c语言中,把整数转化为字符串的函数是什么,怎么用?
如果没-号,radix定为2可以吧?
value=1234;
itoa(value,string,2);
printf("%s",string);
可以吗?
请教while(n)是不是等效于while(n!=0)