What does this mean? I see it all the time in programs and I don\'t get it:
int *array[9];
Why is the asterisk there. What is the difference be
an array of 9 pointers to int type
The asterisk means pointer. You can read the Backus-Naur form for C language to see the definitions of types.