Tagged Questions
13
votes
8answers
2k 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?
12
votes
2answers
583 views
argv[argc] ==?
My professor and a couple of students are arguing about whether argv is null terminated or not. My friend wrote a small program and it printed out null but another kid said that he is probably simply ...
12
votes
3answers
866 views
When can argv[0] have null?
What I have understand about passing arguments to main() from command line is that argc has a minimum value of 1 and argv[0] will always have the program name with its path in it.
If arguments are ...
6
votes
4answers
2k views
Why check if (*argv == NULL)?
In the data structures class that I am currently taking, we have been tasked with writing a web crawler in C++. To give us a head start, the professor provided us with a program to get the source from ...
5
votes
1answer
222 views
How do I set the command line arguments in a C program so that it's visible when users type “ps aux”?
When you type "ps aux" the ps command shows command arguments that the program was run with. Some programs change this as a way of indicating status. I've tried changing argv[] fields and it doesn't ...
4
votes
4answers
127 views
Can argv[0] contain an empty string?
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 ...
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 ...
4
votes
3answers
508 views
How to access argv[] from outside the main() function?
I happen to have several functions which access different arguments of the program through the argv[] array. Right now, those functions are nested inside the main() function because of a language ...
3
votes
1answer
92 views
Interesting observations of argc, argv, and its usage
So, I am working on a Linux based command line utility, that has to accept a few flags, and I have noticed some interesting behavior. I will be posting testing code that I was using outside of the ...
3
votes
8answers
234 views
Modifying command line args so that they cannot be seen in ps output
I have an executable that accepts certain command line arguments. Any user on the machine can find the arguments by doing a ps (Unix) or procexp (Windows). Some of these arguments are things like ...
3
votes
6answers
1k views
argc and argv in main
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAXLINE 1000
int getline(char *s, int lim)
{
int i = 0;
while(i < lim - 1 && (*s = getchar()) ...
3
votes
2answers
2k views
Get other process' argv in OS X using C
I want to get other process' argv like ps.
I'm using Mac OS X 10.4.11 running on Intel or PowerPC.
First, I read code of ps and man kvm, then I wrote some C code.
#include <kvm.h>
#include ...
2
votes
4answers
149 views
Exact Memory Size of argv in C
So my professor gave me (where x is a C executable):
$ ./x y z w
He said the memory size of argv in int main(int argc, char **argv) is 48 bytes, including itself.
Can someone help explain this to ...
2
votes
4answers
98 views
problem generating argv for spawnvp()
I need to run a command using spawnvp(), so I can redirect the output. My problem is, that I don't have argv, but just a string with the whole commnd, so I need to split it. Unfortunately I got an ...
2
votes
6answers
484 views
Can't compare argv?
I have this code:
if (argv[i] == "-n")
{
wait = atoi(argv[i + 1]);
}
else
{
printf("bad argument '%s'\n",argv[i]);
exit(0);
}
When this code gets executed I get the following error:
...
2
votes
2answers
618 views
How does ps show the argv for all processes on Mac OS X?
I'm trying to identify when a particular process is running, based on its arguments, on Mac OS X. There may be several processes running with the same name, but only one will have the arguments I'm ...
2
votes
6answers
2k views
Using argv in C?
For an assignment, I am required to have command line arguments for my C program. I've used argc/argv before (in C++) without trouble, but I'm unsure if C style strings are affecting how this works. ...
2
votes
2answers
2k views
create array of pointers to files
How would I go about making an array of file pointers in C?
I would like to create an array of file pointers to the arguments of main... like a1.txt, a2.txt, etc... So I would run ./prog arg1.txt ...
2
votes
6answers
897 views
How do I handle argv character array assignments?
I found two ways of passing command-line arguments into a character array:
int main (int argc, char **argv)
{
const char *s1 = argv[0];
char s2[256];
strcpy(s2, argv[0]);
printf("s1: %s\ns2: ...
1
vote
3answers
47 views
Comparing char element in array to an operator
I have been looking all over for how to compare char elements in a char array correctly, but it is not working out for me. I am trying to compare the first char in a char array to an operator ...
1
vote
3answers
84 views
C String Becomes Null
I am learning how to get arguments in C, however, when I run the code below with the following input, the first one becomes null.
Input: ./a.out a b c d e f g h i j k
Output: (null) b c d e f g h i ...
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
2answers
58 views
How to get first argument of a program call
I'm making a program in C and this is my code:
int main(int argc, char **argv) {
int n;
char aux[10];
sscanf(argv[1], "%[^-]", aux);
n = atoi(aux);
}
So, if I run the program from ...
1
vote
3answers
90 views
how to combine multiple *argv into a char* type messge
I wrote a TCP socket client program which allows user to input the IP, port, and message as arguments.
It is like:
./a.out 127.0.0.1 555 test message
My question is, how to combine "test" ...
1
vote
1answer
174 views
execvpe argv to parameter matching syntax help needed
I get "passing argument 2 of ‘execvp’ from incompatible pointer type" and
expected ‘char * const*’ but argument is of type ‘const char **’
I'm wondering what the correct syntax is? Thanks!
int ...
1
vote
4answers
294 views
unable to convert contents in argv[] into float[][] in C
I am doing a program where I'm multiplying matricies, but my big issue is converting from the input into the two arrays that I'll eventually be multiplying. The following is my code for conversion ...
1
vote
5answers
367 views
Why hex in string is not converted to hex when passed through command line argument?
What I understand that hexadecimal numbers can be placed into string using \x. For example 0x41 0x42 can be placed in string as "\x41\x42".
char * ptr = "\x41\x42" ;
printf( "%s\n" , ptr ) // AB
\x ...
0
votes
4answers
50 views
Fail to check the second character in argv[] in C
I would like to check the arguments in argv[], but it fails to check the second character.
For example,
I can do that:
int main(int argc, char *argv[]){
if (*argv[1] == "A")
printf("Hello: ...
0
votes
2answers
56 views
How to fopen with name already in a array of strings
I am trying to find a way to use
FILE * fopen ( const char * filename, const char * mode ); but passing the filename indirectly. i would also like to know how to indirectly call a function with name ...
0
votes
2answers
63 views
C - working with Text Files
Basically, I'm working on a small program in C (again, not a homework task, just some experimentation while I'm away from Uni :) ). My goal is to take a file containing lots of words all seperated by ...
0
votes
1answer
86 views
argc argv problems
Can someone please tell me why this code will not work? It does compile. When I type decrypt as the argv[1] argument in the command line, it still gives me the else output. i.e. argv[1] is not ...
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
4answers
77 views
C: Argv declaration in the main function [closed]
What do you think which way is better declaring the argv argument in the main function and why?
int main(int argc, char **argv /* char *argv[] */ /* char (*argv)[] */) {
//...
}
argv comes into ...
0
votes
2answers
76 views
execute commands with options in a c program
I'm trying to execute a commande with arguments in a c program.
For example when the user execute my program with:
"./a.out ls -la"
The program should execute ls with the la options.
But I don't ...
0
votes
1answer
471 views
OpenCV cvLoadImage doesn't accept char* for filename but accepts argv[1]
I realise that this question has been asked before. I've read the answers and tried the solution but it hasn't solved it for me.
I'm using OpenCV 2.1 in Ubuntu 10.10(32-bit) and Eclipse C IDE.
My ...
0
votes
2answers
199 views
exec() not working with firefox
I've been using a combination of fork() and exec() to execute some external command on linux, however, the code seems to fail whenever I try to execute /usr/bin/firefox which is a symbolic link to a ...
0
votes
4answers
488 views
In C, how can I convert a string to a character array?
I have the passed argument argv[1] in my C program, and I want to convert that string into a character array. How may I do this?
int main(int argc, char* argv[])
{
char c [] = argv[1]; // This is ...
0
votes
5answers
343 views
How do I sort the elements of argv in C?
I am trying to alphabetically sort the elements of argv.
The following line of code is giving me problems:
qsort(argv[optind], argc - optind, sizeof(argv[optind]), sort);
Specifically, the last ...
0
votes
5answers
2k views
Determine if string from argv[1] starts with a character or number (C-programming)
I'm writing a small application in C that takes two parameters. One is a filename, the other a number, and they may be specified in random order.
./main filename 12345
and
./main 12345 ...
0
votes
3answers
742 views
Read from argv[0]
How can I read from argv[0]? I'm using NetBeans. Everytime, I have to type in stdin. When I use argv, then the program executes without my input.
Here's my code:
int main(int argc,char *argv[])
{
...
0
votes
2answers
406 views
Help comparing an argv string
I have:
int main(int argc, char **argv) {
if (argc != 2) {
printf("Mode of Use: ./copy ex1\n");
return -1;
}
formatDisk(argv);
}
void formatDisk(char **argv) {
if ...
-1
votes
2answers
90 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 ...