summaryrefslogtreecommitdiff
path: root/4p8.cpp
blob: 46c402af634c90d827a779c2bc87a8769646c407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <iostream>

/*
 *
 * 4.8
 *
 *
 */

int main () {

	// AND, OR
	// AND's right operand is only evaluated if the left operand is True
	// OR's right operand is only evaluated if the left operand is False
	// Equality evaluates left and right and then checks if they are equal
	return 0;
}