欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C语言 | ^ 与 bis和bic关系

程序员文章站 2024-03-07 13:57:33
...

int bis(int x,int m);

int bic(int x,int m);

或运算

int bool_or(int x,inty){
	int result = bis(x,y);
	return result;
}

异或运算

int bool_xor(int x,int y){
	int result = bis(bic(x,y),bic(y,x));
	return result;
}
相关标签: 计算机系统