C语言 位运算有什么奇妙的应用,如何去学?
本帖最后由 〃忝書γě渎ぐ 于 2019-9-30 09:31 编辑#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
int a,b,c,d;
a = 10; // 1010
b = 5; // 0101
c = a | b; // 1111
printf("%d\n",c); // 和不大于15,|就相当于+法运算。
return 0;
} tcp/ip里面计算子网需要用到位运算。 单片机咯,位运算用的比较多
页:
[1]