// 10.7.2.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include #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; }