// PhoneRecord.h

#ifndef PhoneRecord_h
#define  PhoneRecord_h 1

struct PhoneRecord {
  char  name[50];
  int   number;
};

#endif
