[Dev-C++] this works with VS2008 but not DevC++
Open Source C & C++ IDE for Windows
Brought to you by:
claplace
From: qian h. <ha...@gm...> - 2008-09-21 23:14:11
|
class DeckOfCards { public: DeckOfCards(); // constructor initializes deck void shuffle(); // member function that shuffles cards in deck void deal(); // member function that deals cards in deck private: int deck[3][14]; // represents deck of cards }; // end of class definition |