#022 – Using void as a function parameter
void is a special type. It means no type! We are accustomed to functions returning void. However, a function parameter can also be void. This means the function accepts zero parameters. Why is this possible? This feature is inherited from…