hi in my drive file this is what my constructor looks like. im passing an array to it the constructor so that i can assign it to set[num]. what i want to know is what would this look like in the header file?
drive-file:
IntegerSet::IntegerSet( int a[])
{
for ( int num = 0; num < 101; num++)
{
set[num] = a[num];
}
}
in the header file would it look like this or is this wrong?
IntegerSet(int);