#include <stdio.h>
#include <string.h>
#define NAMELENGTH 20

int main () {
	char myname[NAMELENGTH];
	struct person {
		int age;
		char first[NAMELENGTH], last[NAMELENGTH];
		} me, you;
		
	struct person her, person;
	/* note the variable name "person" doesn't conflict with the struct name "person" */
	/* person him; doesn't compile */
		
	char students[30][NAMELENGTH];
	me.age = 39;
	strcpy (me.first, "Stephen");
	/* etc. */
	
	if (me.age > 35) {
		printf ("Can't trust %s", me.first);
		}
	
	return 0;
	}


	