Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
101 views

how to tell when you've reached the end of a C array? (specifically argv)

been asked a question on this, basically coming up with argc...without actually having argc if your given argv, which as I understand essentially a array of pointers to the relevant char arrays of ...
2
votes
1answer
57 views

Using argc and argv in Eclipse?

I have a working program but now I have to use the int argc and char *argv[] parameters to main. Whenever I try to do this it gives me errors that it cannot save. Is there any way to make argc and ...
2
votes
2answers
797 views

Why does MPI_Init accept pointers to argc and argv?

this is how we use MPI_Init function int main(int argc, char **argv) { MPI_Init(&argc, &argv); … } why does MPI_Init use pointers to argc and argv instead of values of argv?
1
vote
3answers
71 views

how can I read a command line argument using getopt? [closed]

I would like to get a string passed in by the user on the command line. The string is basically a specific argv element I'm trying to get. For example: on linux when the user types in > ...
1
vote
4answers
66 views

Selective suppression of output to the terminal C++.

I have a bunch of .cpp files which together process similar data files but of various sizes. For the larger data files I want to do some timing studies on the functions inside the .cpp files. I ...
1
vote
1answer
177 views

Jython 2.5.1: Calling From Java into __main__ - how to pass in command line args?

I'm using Jython from within Java; so I have a Java setup similar to below: String scriptname="com/blah/myscript.py" PythonInterpreter interpreter = new PythonInterpreter(null, new PySystemState()); ...
1
vote
4answers
810 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
627 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
1answer
65 views

C Programming - Command Line Arg - Trying to take an IP Address

Our assignment is to have a server-client model.... We're supposed to check for a command line arg, if there is not one(argc = 1), we set up as a server. otherwise we use the argv[1] to setup the ...
0
votes
1answer
57 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
3answers
728 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 ...
-1
votes
2answers
89 views

executing a process with argc=0

Is it possible to execute a process whose argc = 0? I need to execute a program but it is extremely important for its argc to be equal to 0. Is there a way to do that? I tried to put 2^32 arguments in ...