I am doing it that way:
int argc = 9;
char* argv[argc];
argv[0] = "c:/prog.exe";
but I get notice, that it is deprecated. What is better way?
|
I am doing it that way:
but I get notice, that it is deprecated. What is better way? | |||||||||||||
feedback
|
|
You have to either make it const:
... or not use the constant string literals:
| |||
|
feedback
|
|
Besides the problem of using something other than a constant expression for your array size... The thing that has been deprecated is the silent casting of string literals to
Now it has to be:
This deprecation is actually in an Appendix in C++03. | |||
|
feedback
|
|
Let analyze what you are doing here:
My guess is that you are not trying to do what I've described above. Try something like this:
-or -
| |||
|
feedback
|
|
Try using
Here, | |||||||
feedback
|
|
+1 for Vlad. Some more explanation from me on what happens here: You get the "deprecated" warning, because such code:
now has type Why? String literal is a pointer to constant memory, that's why it needs to be | |||
|
feedback
|
|
Other than what everyone else has pointed out about const string literals being assigned to non-const char pointers and the weirdness of declaring argv and argc outside of main()'s parameter list, there is an additional problem with this line here:
You can only use integer constant expressions for array sizes in C++; an integer constant expression being a literal integer in the source of your program (like "5" or "10"), an enumerations value (like "red" from "enum colors {red, green, blue};"), a sizeof expression, or an int variable declared with const:
Many C++ compilers implement C99-style variable-length arrays, so you may not get any complaint when you use them, but they are still best avoided if you want to write portable code. | ||||
|
feedback
|