C语言中用二进制输出一个数字
Posted 柳鲲鹏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言中用二进制输出一个数字相关的知识,希望对你有一定的参考价值。
代码也简单:
#include <stdlib.h>
#include <stdio.h>
void output_number_bin(const int number)
char string[64];
itoa(number, string, 2);
printf("%d->%s\\n", number, string);
以上是关于C语言中用二进制输出一个数字的主要内容,如果未能解决你的问题,请参考以下文章