/* skeleton file for Person.c
The struct declaration below must be used for Person objects.
Remove this comment and complete this file with all necessary code.
*/

/* a Person consist of pointers to C-strings for names and phone number */
struct Person {
	char* firstname;
	char* lastname;
	char* phoneno;
};