summaryrefslogtreecommitdiff
path: root/4p26.cpp
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-08-21 18:08:30 +0200
committerOskar <[email protected]>2024-08-21 18:08:30 +0200
commite747f69eb9b34f2c99472ca1cd17e049c1b74c9c (patch)
treebf082a6c2a00f29cdc81f5a2b9b1699c94eb1128 /4p26.cpp
parent5562f3eb30418f33ba2d2b4634e8d7a2f5d49dc5 (diff)
more
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;
+}