hey i don't know what to do! I have a great understanding of C basics. Structures, file IO, strings, etc. Everything but CLA. For some reason i cant grasp the concept. Any suggestions, help, or advice. PS i am a linux user
feedback
|
|
The signature of
So, if you ran your program like this:
Then:
| |||||||||||||
feedback
|
|
For parsing command line arguments on posix systems, the standard is to use the A good reference is the GNU getopt manual | |||
|
feedback
|
|
Main is just like any other function and argc and argv are just like any other function arguments, the difference is that main is called from CRT and it passes the argument to main,But CRT is defind in c lib and you cannot modify it, So if we do execute programme on shell or through some IDE , we need some mechanism to pass the argument to main function so that your main function can behave differently on the runtime depending on your parameters. The parameters are argc , which gives the number of arguments and argv which is pointer to array of pointers, which holds the value as strings, this way you can pass any number of arguments without restricting it, its the other way of implementing var args. | |||
|
feedback
|
|
Imagine it this way
Maybe a example program woluld help.
it just prints everything you enter as args in reverse order but YOU should make new programs that do something more useful. compile it (as say hello) run it from the terminal with the arguments like
then try to modify it so that it tries to check if two strings are reverses of each other or not then you will need to check if argc parameter is exactly three if anything else print an error
then check if argv[2] is the reverse of argv[1] and print the result
should output
the best example is a file copy program try it it's like cp cp file1 file2 cp is the first argument (argv[0] not argv[1]) and mostly you should ignore the first argument unless you need to reference or something if you made the cp program you understood the main args really... | |||
feedback
|
|
Siamore, I keep seeing everyone using the command line to compile programs. I use x11 terminal from ide via code::blocks, a gnu gcc compiler on my linux box. I have never compiled a program from command line. So Siamore, if I want the programs name to be cp, do I initialize argv[0]="cp"; Cp being a string literal. And anything going to stdout goes on the command line??? The example you gave me Siamore I understood! Even though the string you entered was a few words long, it was still only one arg. Because it was encased in double quotations. So arg[0], the prog name, is actually your string literal with a new line character?? So I understand why you use if(argc!=3) print error. Because the prog name = argv[0] and there are 2 more args after that, and anymore an error has occured. What other reason would I use that? I really think that my lack of understanding about how to compile from the command line or terminal is my reason for lack understanding in this area!! Siamore, you have helped me understand cla's much better! Still don't fully understand but I am not oblivious to the concept. I'm gonna learn to compile from the terminal then re-read what you wrote. I bet, then I will fully understand! With a little more help from you lol <> Code that I have not written myself, but from my book. includeint main(int argc, char *argv[]) { int i;
} This is the output: anthony@anthony:~\Documents/C_Programming/CLA$ ./CLA hey man The follow arguments were passed to main(): hey man anthony@anthony:~\Documents/C_Programming/CLA$ ./CLA hi how are you doing? The follow arguments were passed to main(): hi how are you doing? So argv is a table of string literals, and argc is the number of them. Now argv[0] is the name of the program. So if I type ./CLA to run the program ./CLA is argv[0]. The above program sets the command line to take an infinite amount of arguments. I can set them to only take 3 or 4 if I wanted. Like one or your examples showed, Siamore... if(argc!=3) printf("Some error goes here"); Thank you Siamore, couldn't have done it without you! thanks to the rest of the post for their time and effort also! PS in case there is a problem like this in the future...you never know lol the problem was because I was using the IDE AKA Code::Blocks. If I were to run that program above it would print the path/directory of the program. Example: ~/Documents/C/CLA.c it has to be ran from the terminal and compiled using the command line. gcc -o CLA main.c and you must be in the directory of the file. ~Ubuntu 10.04 Lucrid Lynx~ | ||||
|
feedback
|
|
I am not quite understand what you mean,methods or parameters.My way to C is guess at first ,then code to test. | |||
|
feedback
|