Tagged Questions

12
votes
2answers
559 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
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?
4
votes
4answers
108 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
99 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
485 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 ...
2
votes
4answers
131 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
88 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
417 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
6answers
1k 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
836 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
80 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
65 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
51 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
84 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
152 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
262 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 ...
0
votes
4answers
47 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
49 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
58 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
74 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
62 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
71 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
74 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
452 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
186 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
455 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
335 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
339 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
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
710 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[]) { ...
-1
votes
2answers
79 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 ...