summaryrefslogtreecommitdiff
path: root/CST116F2021-Lab6/Lab6_Header.h
diff options
context:
space:
mode:
authorBenjamin Schroeder <[email protected]>2021-11-10 18:56:41 -0800
committerBenjamin Schroeder <[email protected]>2021-11-10 18:56:41 -0800
commit2fb4b2a2c1d5b40bba3697f0a651bb17df9021e7 (patch)
treeab5ecda4c3e3785e9394e8465382345c80cc7670 /CST116F2021-Lab6/Lab6_Header.h
parentLab6 Exercises (diff)
downloadcst116-lab6-bensprogramma-2fb4b2a2c1d5b40bba3697f0a651bb17df9021e7.tar.xz
cst116-lab6-bensprogramma-2fb4b2a2c1d5b40bba3697f0a651bb17df9021e7.zip
Update on exercises
10.10, 10.14, 10.15
Diffstat (limited to 'CST116F2021-Lab6/Lab6_Header.h')
-rw-r--r--CST116F2021-Lab6/Lab6_Header.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/CST116F2021-Lab6/Lab6_Header.h b/CST116F2021-Lab6/Lab6_Header.h
index 4c86919..66de45b 100644
--- a/CST116F2021-Lab6/Lab6_Header.h
+++ b/CST116F2021-Lab6/Lab6_Header.h
@@ -2,10 +2,23 @@
#include <iostream>
#include<iomanip>
#include<string>
+#define _CRT_SECURE_NO_WARNINGS
+#pragma warning(disable:4996)
+
+
using namespace std;
+
+// Functions for 10.10 Learn By Doing p282-283
#define ARRAY_SIZE 10
void readData(int[ARRAY_SIZE][2], string[ARRAY_SIZE][2]);
void printData(int[ARRAY_SIZE][2], string[ARRAY_SIZE][2]);
+// Functions for 10.14 Programming Exercises p292-293
+void isPalindrome(char[]);
+void isAlphaStr(char[]);
+void countChar(char[], char);
+
+
+