blob: d951ff657bf09a3a75c0411fe69d4df9c3353f6f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
#include <iostream>
using namespace std;
//10a
// 9.4 Learn by Doing Exercises
//function getName prototype
//void getName(char first[], char last[]);
//function formatName prototype
//void formatName(char first[], char last[]);
//10b
//9.5 Learn by Doing Exercises
//function getStrings prototype
void getStrings(char firstString[], char secondString[]);
//functioncompareStrings prototype
void compareStrings(char firstString[], char secondString[]);
|