Write a program to keep track of the exact hands of cards that were picked using a 2-dimensional array. For example: bool cards[][13] = { {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} }; Where each row represents a suit. If a card is picked, the value becomes 1 [ True ]. Then print out the actual cards that are picked. It is up to you to pick which row is associated with which suit, or if you do not have time, make sure that it at least prints out the resulting matrix. Example [20 throws]: $ ./a.out 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 1 0 0 0 1 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 0 1 1 1 1 1 1 0