summaryrefslogtreecommitdiff
path: root/4p8.cpp
diff options
context:
space:
mode:
Diffstat (limited to '4p8.cpp')
-rw-r--r--4p8.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/4p8.cpp b/4p8.cpp
new file mode 100644
index 0000000..46c402a
--- /dev/null
+++ b/4p8.cpp
@@ -0,0 +1,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;
+}