Help with using data from an array

Greenbean209:
Well true int notesArray isn't necessarily an arr. but if i provide my instance with an array won't notesArray be an array.

No.

Greenbean209:
Also I messed up I meant to type this.

Song::Song(int notesArray)

{
    _notesArray = ¬esArray;
}




Would the pointer I created point to the beginning of an array that I would input?

No, because you are not inputting an array, you are inputting a single int, which is passed by value.