본문 바로가기
C/☞

[12] 연산자 : 논리연산자

by TR. 2020. 7. 14.

논리연산자 : 결과값은 1(true) or 0(false)
1) and : &&
2) or   : ||
3) not : !

 

# include <Windows.h>
# include <stdio.h>

void main(){
	int a = 10;
	int b = 30;
	int c = 10;

	printf("a = %d \n", a);
	printf("b = %d \n", b);
	printf("c = %d \n", c);
	
	printf("a = c and b = c : %d \n", a == c && b == c);
	printf("a = c or b = c : %d \n", a == c || b == c);
	printf("a ≠ c : %d \n", !(a == c));
	
	
	system("pause");
}

'C > ' 카테고리의 다른 글

[14] 제어문  (0) 2020.07.14
[13] 연습문제 : 연산자  (0) 2020.07.14
[11] 연산자 : 비교연산자  (0) 2020.07.14
[10] 연산자 : 대입연산자  (0) 2020.07.14
[09] 연산자 : 산술연산자  (0) 2020.07.14

댓글