#ifndef __BUG_1__ #define __BUG_1__ #include using namespace std; // class Buggy creates an array of ints. The size of the array is // determined by the user and passed as a parameter to the constructor. // methods are fill(int), which distributes the same value to all array // cells, and print(), which prints the array. class Buggy { public: Buggy(int); void fill(int); void print(); private: int * horse; int size; }; #endif