#include #include using namespace std; struct Card { string suit; string value; }; /* Lägg till din Card_ptr klass här */ int main () { Card_ptr H10{"Heart", "10"}; Card_ptr SJ{"Spade", "J"}; cout << (*H10).value << " of " << (*H10).suit << "s\n" << (*SJ).value << " of " << (*SJ).suit << "s" << endl; }