i have a problem:
variable 'MySet::group' is uninitialized. always initialize a member variable (type.6)
i dont understand what is the mistake, it seems to me that the variable is intizialize.
this the Source file
 MySet::MySet()
{   
    int* group = NULL;
}
this is Header File
class MySet
{
private:
    int* group;
    int size;
 public:
    MySet();                          //defult- creating an empty group
 
     
    