Posts by Gwill • 21 points
1 post
-
2
votes2
answers340
viewsQ: Refection return in C++
I cannot understand what the following function returns. int * begin(){ // return &this->data[0]; } Does this function return the address of a reference? I didn’t understand it very well.…