itoa function

Prototype char* itoa (sint value, char* str, int base);

 

Convert integer to string (non-standard function)

Converts an integer value to a null-terminated string using the specified base and stores the result in the array given by str parameter.

 

If base is 10 and value is negative, the resulting string is perceded with a minus sign(-) , with any other base, value is always  considered unsigned.

 

str should be an array long enough to contain any possible value; (sizeof(int)*8+1) for radix =2 , i.e. 17Bytes in 16-bits platforms and 33Bytes for 32-bits platforms.

 

Parameters:

1.value:

value to be converted to a string.

2.str:

Array in memory where to store  the resulting null-terminated string.

3.base:

Numercial base used to represent the value as a string. between 2 and 36, where 10 means decimal base, 16 hexadecimal, 8 octal, and 2 binary.

 

Return value

A pointer to the resulting null-terminated string, same as paramaters.

 

Portability

This function is not defined in ANSI-C and is not part of C++, but is supported by some compilers.

A standard-compliant alternative for some cases may be sprintf:

·sprintf(str,"%d",value) converts to decimal base.

·sprintf(str,"%x",value) converts to hexadecimal base.

·sprintf(str,"%o",value) converts to octal base.

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值