//  string_5.cpp

#include "CS35files.h"

int main ()
{
	char intro[80], name[80], title[80];
	
	cout << "Enter your name: ";
	getline (name);
	
	cout << "Enter your title: ";
	getline (title);
	
/*   The following would be nice, but can't be done with cstrings:

	intro = "I'd like you to meet ";
	intro = intro + name;
	intro = intro + title;
*/

	strcpy (intro, "I'd like you to meet");
	strcat (intro, " ");
	strcat (intro, name);
	strcat (intro, ", ");
	strcat (intro, title);
	
	cout << endl;
	return 0;
}	
	
	

