const char * const * argv是什么意思?是否与const char * argv []相同?const char ** argv是否也是一样的?
**argv = x; // not allowed because of the first const *argv = y; // not allowed because of the second const argv = z; // allowed because no const appears right next to the argv identifier