How can I do this? I'm not even sure what the problem is so I can't really search google. Why is this not possible?:
#include <iostream>
#include <cmath>
using namespace std;
void vGameLoop();
void vDoMenu();
void vDealMenu();
void vDoDeal();
int main(){
vGameLoop();
return 0;
}
class CCards{
const int kiSuits = 4;
string suits[kiSuits];
suits[0] = "HEARTS";
}
Am I creating the class wrong?