In one of the C++ programs, I saw a function prototype : int Classifier::command(int argc, const char*const* argv)
What does const char*const* argv mean? Is it the same as const char* argv[]?
Does const char** argv also mean the same?
|
In one of the C++ programs, I saw a function prototype : What does |
|||||||||
|
|
No, it's not the same as
|
||||
|
|
|
compiles just fine. (The reverse wouldn't compile without a |
|||
|
|
|
From C++ FAQ Lite:
|
||||
|
|
|
a pointer that does not change to a string that does not change:
hth Mario |
|||
|
|