I have started to learn c++ and reading thinking in c++ volume 1. I come across a statement that in c++ one can define a function with unnamed argument list. I could not appreciate the significance of it. Please guide.
int function(int) {
// definition
}
...
function(1); // function call
Thanks in advance.