aboutsummaryrefslogtreecommitdiff
path: root/10a/10.7.2/10.7.2.cpp
blob: fb5fc537695937b2effd20309efdd74528f36ad8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 10.7.2.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include "10_7.h"

using namespace std;

int main()
{
    char first[20]{}, last[20]{}, full[40];

    GetNames(first, last);
    CombineNames(first, last, full);

    cout << full;

}