C++ Question
Create a class for a card in a deck of playing cards. The objectmust contain methods for setting and retrieving the suit and thetype of card (type of card meaning 2,3,4,5,6,7,8,9,10,J,Q,K,A).Separate the declaration of the class from its implementation byusing the declaration in a header file and the implementation in a.cpp file. Also create a driver program and a makefile whichcomplies the code and makes it able to run.
This is more basic programming so please keep it simple and usethings like:
namespace std, use cout/cin instead of printf, and please leavesimple comments explaining what you're doing in the code. Pleasejust label which part of the code it is since you can't send fileson here.