c_cpp 在C中从右侧打印位

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 在C中从右侧打印位相关的知识,希望对你有一定的参考价值。

#include <stdio.h>
#include <limits.h>
// print right most bits in c

// prints an nth bit from the right
void print_bit_from_right(unsigned num, unsigned places)
{
   putchar(((num >> places) & 1) ? '1' : '0');
}

void print_all_bits_right(unsigned num)
{
  unsigned places = sizeof(unsigned) * CHAR_BIT;
  while(--places) putchar(((num >> places) & 1) ? '1' : '0');
  putchar('\n');
}


int main(void) {
  print_all_bits_right(1000);
  // 0000000000000000000000111110100
  return 0;
}

以上是关于c_cpp 在C中从右侧打印位的主要内容,如果未能解决你的问题,请参考以下文章

在矩阵中从左、右、上、下查找岛

在java中从右侧读取文件

在拆分视图控制器 iOS8 目标 C 中从右侧打开主视图

c_cpp 用右侧最大的元素替换每个元素

c_cpp 从内存中从src开始获取大小字节生数据到指定字符串dst(自己保证长度)

c_cpp 示例打印在C ++中加倍