Tag: Tutorial
Inline Functions in C++
Use inline as a linkage/ODR tool (and historically an optimization hint).
Function Parameters in C++
Pass by value, const reference, or pointer/reference for mutation.
Function Overloading in C++
Define multiple functions with the same name and different parameter lists.
Default Arguments in C++
Provide default parameter values from the rightmost parameters.