Just wanted to know why default arguments require you to go right to left. And what are the significances of having default arguments. I mean instead of doing this...
int volume(int w = 4, int l = 5, int h = 5);
Why couldn't you simply do this...
1 2 3 4 5 6 7 8 9
int volume(int w, int l, int h)
{
w = 4;
l = 5;
h = 5
return w*l*h;
}