본문 바로가기
C/c언어 수업

p376 비트단위 &연산자

by sj0020 2020. 8. 6.
#include <stdio.h>

int main(void)
{
	int n1 = -1;
	int n2 = 0;
	
	int result1 = ~n1;
	int result2 = ~n2;

	printf("result1=%d \n", result1);
	printf("result2=%d \n", result2);
	
	return 0;
}

​
#include <stdio.h>

int main(void)
{
	int n1 = 15;
	int n2 = 20;
	int result = n1 & n2;

	printf("n1=%d \n", n1);
	printf("n2=%d \n", n2);
	printf("result=%d \n", result);

	return 0;
}

 

 

'C > c언어 수업' 카테고리의 다른 글

p385 산술시프트 / 논리시프트  (0) 2020.08.06
p381 비트 쉬프트 연산자  (0) 2020.08.06
p365 8진수 16진수  (0) 2020.08.06
p341지역변수 static - static variable 정적변수  (0) 2020.08.06
p345 register 레지스터  (0) 2020.08.06