Possible Duplicate:
What does int argc, char *argv[] mean?
int main (int ac, char **av)
{
/* functions*/
}
What are meant by ac and av here?
What are meant by ac and av here? |
||||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
ac is **argument count. av should be So, if you invoke your program like this:
ac will have a value of 4 and av will be something like:
|
|||||||||
|
|
|
|||
|
|
|
attribute count and attribute value |
|||||||
|
argcandargv. – R. Martinho Fernandes Jan 31 '11 at 14:32