I\'m having a problem with optional function parameter in C++
What I\'m trying to do is to write function with optional parameter which is passed by reference, so th
It is much easier to use a pointer type and setting it to NULL than setting default/optional value for a reference parameter.