// ~cs35/string_0.cpp
#include "CS35lib.h"

/* Provides a VERY crude introduction to strings; 
	we'll cover this later in more detail
*/

int main ( )
{ 
	char name[40];	
	char ch;
	
	cout << "Enter your name: ";
	getline(name); 				
	cout << "Hello, "<<name<<".\n";	
	cout << "Enter your roommate's name: ";
	getline(name); 								
	cout << "Hello, "<<name<<".\n";	

	return 0;
}

//getline(name); //part of CS35lib.h  or 	
//cin.getline(name,30); // part of C++

