Hi all,
I am looking at the source code of a program, and I am a bit confused over a particular part of it.
What does char **args; mean ?
I understand the concept of pointers, but I'm not to sure on the double asterisks!!!
If someone can tell me it'd be much appreciated!
Thanks!!
Krissi
-----------
FYI - code
int main(int argc, char *argv[])
{
char **args;
char input[MAX_STR_LENGTH];
int i;
//Rest of program...
}
I am looking at the source code of a program, and I am a bit confused over a particular part of it.
What does char **args; mean ?
I understand the concept of pointers, but I'm not to sure on the double asterisks!!!
If someone can tell me it'd be much appreciated!
Thanks!!
Krissi
-----------
FYI - code
int main(int argc, char *argv[])
{
char **args;
char input[MAX_STR_LENGTH];
int i;
//Rest of program...
}