In any C program, the command line argument argv[0] points to the name used to invoke the program. Is there any circumstance in which it will point to an empty string ""?
An example code snippet for such a case would be a good reference.
feedback
|
|
It's implementation defined. ยง5.1.2.2.1 abridged:
So if In practice, of course, you just need to make sure the platforms your targetting behave as needed. | |||||||||||||
feedback
|
|
Yes. The C language standard explicitly allows for the possibility that
On Unix-like systems, programs are invoked by one of the Note that the standard says that | |||||||||||||
feedback
|
|
Other replies have quoted the C standard and shown that
The second one,
(This is a Posix-specific version. Non-standard environments may need changes.) Here's how to use them:
The first run of How can this bite you? If, for example, you blindly print out the name of your program in a usage message:
Better:
If you don't do this, an attacker can cause your program to segfault at will, or might get your program to report entirely wrong things to the user. | |||
feedback
|
|
argv[0] can be null in C, for example if you directly invoke a main function (with some tricks can be done in C). I don't know if C++ allows direct main invocation. | |||||||||||
feedback
|