In C++ and Object Pascal (and sometimes in Objective-C) memory for variables is most often created using a simple declaration statement. Space is then automatically created.
Card aCard; // C++ declaration var aCard : Card; { Object-Pascal declaration }