summaryrefslogtreecommitdiff
path: root/4p26.cpp
diff options
context:
space:
mode:
Diffstat (limited to '4p26.cpp')
-rw-r--r--4p26.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/4p26.cpp b/4p26.cpp
new file mode 100644
index 0000000..d8cb540
--- /dev/null
+++ b/4p26.cpp
@@ -0,0 +1,20 @@
+
+/*
+ *
+ * 4.26
+ *
+ *
+ */
+
+int main () {
+
+ /*
+ It's only gauranteed for an int to have
+ 16 bits. Most of the time on modern computers
+ we wont actually have 16 bit ints. But, to be
+ completely sure we use long so that we can
+ absolutely gaurantee that we have enough bits
+ so that we can set students to failed or passed.
+ */
+ return 0;
+}