Three problems for c++
#ifndef PEOPLE_H #define PEOPLE_H #include "Person.h" #include <string> using namespace std; class People { // data is private by default static const int MAX_PEOPLE = 1000; Person people[MAX_PEOPLE]; int personCount; public: People(string); int getPersonCount() {return personCount;} private: void loadPeople(string); }; #endif