1234567
struct Info { string name; unsigned age; Info( string Name, unsigned Age ): age(Age), name(Name){} }; mystack.push( Info("Name",123) );