[Solved] Can not understand the return of this function in C++


It’s a reference to a pointer:

CheckList(Listfile*& Listitems,bool showSortList)
          ^^^^^^^^^ pointer to Listfile
                   ^ reference

you should study C++ better, this can be found in any decent C++ book.

2

solved Can not understand the return of this function in C++