Title: Card Game Simulation using Stack and Deck Description: Create a program that simulates a simple card game using a stack and a deck of cards. The objective of the game is to implement basic card manipulation operations using stacks and to showcase the fundamental principles of a deck-based game. Suggested list of data structures: 1. Use a struct or class to store data about each card: struct Card { string suit; string rank; } 2. Use the following arrays or an alternative d