
February 25th, 2003, 12:49 AM
|
 |
Banned ;)
|
|
Join Date: Nov 2001
Location: Woodland Hills, Los Angeles County, California, USA
|
|
|
It's a pointer to a pointer to int. Normally people use this sort of notation to pass a 2-d array. A more common version of this that you may see is:
int main(int argc, char **argv)
which is sometimes used instead of
int main(int argc, char *argv[])
Last edited by Scorpions4ever : February 25th, 2003 at 01:00 AM.
|