Can someone help me with this?
class Note{
private:
double Freq;
int milisec;
public:
Note();
Note(double Fr, int ms){
Freq = Fr;
milisec = ms;
};
~Note();
};
Ok... now I declare something like this:
Note mynotes[MAX_NOTES];
is there a way to find out the array size?
Thanks