最佳答案
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?