C Programming :: Complicated Declarations
-
Declare the following statement?
"An array of three pointers to chars". -
What do the following declaration signify?
int *ptr[30];
-
Declare the following statement?
"A pointer to an array of three chars". -
What do the following declaration signify?
char *arr[10];
-
What do the following declaration signify?
int (*pf)();
-
Declare the following statement?
"A pointer to a function which receives an int pointer and returns float pointer". -
What do the following declaration signify?
void *cmp();
-
Declare the following statement?
"A pointer to a function which receives nothing and returns nothing". -
What do the following declaration signify?
int *f();
-
What do the following declaration signify?
void (*cmp)();