Tagged Questions
12
votes
8answers
1k views
Is “argv[0] = name-of-executable” an accepted standard or just a common convention?
When passing argument to main() in a C or C++ application, will argv[0] always be the name of the executable? Or is this just a common convention and not guaranteed to be true 100% of the time?
3
votes
8answers
3k views
convert string to argv in c++
I have an std::string containing a command to be executed with execv, what is the best "C++" way to convert it to the "char *argv[]" that is required by the second parameter of execv()?
To clarify:
...
2
votes
7answers
693 views
C++ - int main(int argc, char *argv[])
If I have this:
int main(int argc, char *argv[])
In the body, you can sometimes find programs using argv[1].
When do we use argv[1] over argv[0]? Is it only when we just want to read the second ...
1
vote
1answer
175 views
Passing char ** as reference and returning const char * as reference
I have a class which parses the Command line arguments and then returns the parsed value to the client class. For parsing, I need to pass argv to parse function. I would like to pass by reference but ...
1
vote
4answers
720 views
Qt - QApplication app(argc, argv)
I noticed that the main.cpp in a Qt application has to contain the following line:
QApplication app(argc, argv);
I know that argc is the number of command-line arguments, and argv is that array ...
1
vote
4answers
596 views
How do I benefit from argc and argv in C++, the standard way? [closed]
What is the standard way to retrive and check for the argc and argv and what is the best usage and how to do that in linux?
Please provide examples.
"I want to have a complex command-line options ...
0
votes
3answers
94 views
Command prompt closes without taking input
Why am I not being able to enter anything? The program on running doesn't wait for my input and the cmd prints Enter a Filename and closes. I am executing it on Visual Studio 2008.
int main(int argc, ...
0
votes
1answer
50 views
How do i take integers from a file and place them in an int vector?
I am trying to take a text file and take the integers inside the file and transfer them into a vector in which can be read into different functions.
This is what i have so far:
int main(int argc, ...
0
votes
2answers
167 views
__targv is NULL in my MFC windows application. argc == 1
I have a windows application setup as follows:
Debug - builds an exe which statically links the libraries it uses
Release - builds an exe which links to a DLL
I've just created the release version, ...
0
votes
3answers
678 views
Is there any way to set argv and argc parameters in runtime?
Hi
I need to debug my program, the problem is taht this program takes couple of parameters. How Can I debug program which takes a parameters ?? Can I somehow modify argc and argv parameters in runtime ...
0
votes
4answers
325 views
c++ - arguments to main
very basic question. i try to write a program that outputs the filenames of the files dragged onto the exe.
i followed this guide for main arguments:
...
0
votes
6answers
665 views
C++ argv path specifier
In the interpreter for my programming languages I have to correctly handle the parts in case the import function is called. I then need to check if such a file is in the /libs folder (located at the ...
0
votes
4answers
1k views
Convert std::vector<char*> to a c-style argument vector arv
I would like to prepare an old-school argument vector (argv) to use within the function
int execve(const char *filename, char
*const argv[],char *const envp[]);
I tried it with the ...
0
votes
1answer
4k views
Visual C++ argv question
I'm having some trouble with Visual Studio 2008. Very simple program: printing strings that are sent in as arguments.
Why does this:
#include <iostream>
using namespace std;
int _tmain(int ...