#include #include using namespace std; struct PlayerT { int age{0}; float weight{100.0}; string name="Bob"; }; int main() { PlayerT player; PlayerT player2{9,22.2, "Other Player"}; cout << player.name << endl; return 0; }