int main( const int argc , const char[] const argv)
As Effective C++ Item#3 states "Use const whenever possible", I start thinking "why not make these 'constant' parameters const
"?.
Is there any scenario in which the value of argc
is modified in a program?
In this case, history is a factor. C defined these inputs as "not constant", and compatibility with (a good portion of) existing C code was an early goal of C++.
Some UNIX APIs, such as
getopt
, actually do manipulateargv[]
, so it can't be madeconst
for that reason also.(Aside: Interestingly, although
getopt
's prototype suggests it won't modifyargv[]
but may modify the strings pointed to, the Linux man page indicates thatgetopt
permutes its arguments, and it appears they know they're being naughty. The man page at the Open Group does not mention this permutation.)Putting
const
onargc
andargv
wouldn't buy much, and it would invalidate some old-school programming practices, such as:I've written such programs in C, and I know I'm not alone. I copied the example from somewhere.