Declare an integer variable cardsInHand and initialize it to 13.

LANGUAGE: C++

CHALLENGE:

Declare an integer variable cardsInHand and initialize it to 13.

SOLUTION:

int cardsInHand;
cardsInHand = 13;

Posted in ,