summaryrefslogtreecommitdiff
path: root/CST116F2021-Lab6/Lab6_Header.h
diff options
context:
space:
mode:
authorBenjamin Schroeder <[email protected]>2021-11-03 16:32:52 -0700
committerBenjamin Schroeder <[email protected]>2021-11-03 16:32:52 -0700
commit5bcf8d36d9004dde2792a9e35159df253c90c2bb (patch)
tree47a075ca7fedd752fd2154389bbad07389dce3e0 /CST116F2021-Lab6/Lab6_Header.h
parentAdd online IDE url (diff)
downloadcst116-lab6-bensprogramma-5bcf8d36d9004dde2792a9e35159df253c90c2bb.tar.xz
cst116-lab6-bensprogramma-5bcf8d36d9004dde2792a9e35159df253c90c2bb.zip
Lab6 Exercises
Diffstat (limited to 'CST116F2021-Lab6/Lab6_Header.h')
-rw-r--r--CST116F2021-Lab6/Lab6_Header.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/CST116F2021-Lab6/Lab6_Header.h b/CST116F2021-Lab6/Lab6_Header.h
new file mode 100644
index 0000000..4c86919
--- /dev/null
+++ b/CST116F2021-Lab6/Lab6_Header.h
@@ -0,0 +1,11 @@
+#pragma once
+#include <iostream>
+#include<iomanip>
+#include<string>
+using namespace std;
+
+#define ARRAY_SIZE 10
+void readData(int[ARRAY_SIZE][2], string[ARRAY_SIZE][2]);
+void printData(int[ARRAY_SIZE][2], string[ARRAY_SIZE][2]);
+
+