c语言的二进制数值如何直接输出?

日期:2018-03-30 06:01:29 人气:2

c语言的二进制数值如何直接输出?

C标准没有输出二进制的,不过用itoa()可以实现到二进的转换 可以使用itoa函数把变量的数值转换成2进制字符串,再用输出函数输出。 用 法:char *itoa(int value, char *string, int radix); 详细解释:itoa是英文integer to array(将int整型数转化为一个字符串,并将值保存在数组string中)的缩写. 参数:value: 待转化的整数。 radix: 是基数的意思,即先将value转化为radix进制的数,范围介于2-36,比如10表示1
    A+
热门评论