blob: 66de45bdef16d309522b9d1b63c6ec91ba073ec2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#pragma once
#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);
|