what about "char *(*(*a[])())();"
Answers were Sorted based on User's Feedback
Answer / jaroosh
"char *(*(*a[])())();"
is a string, but
char *(*(*a[])())();
is NOT.
It is simply a function pointer declaration, which says :
"declare an array named 'a', of pointers to functions that
take no arguments and return a pointer to a function that
takes no arguments and returns a pointer to char"...thew,
reading function pointers is actually kinda complicated.
NOTE: char *(*(*a[])())(); is an erroneous declaration, for
it to be proper, you have to specify array size, eg:
char *(*(*a[5])())(); will work.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / guest
Simply it is a string.Bze in C the contents within "" will
treate as strings.
| Is This Answer Correct ? | 2 Yes | 2 No |
Can stdout be forced to print somewhere other than the screen?
How can I call a function, given its name as a string?
What is sorting in c plus plus?
Explain how can I remove the trailing spaces from a string?
Explain Basic concepts of C language?
program to find the roots of a quardratic equation
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
While compiling a c program,graphics header files are not including in my program..eg: <graphics.h>,what may be the problem...is there any environment settings exists.
how to find the given number is prime or not?
Tell me when is a void pointer used?
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
using for loop sum 2 number of any 4 digit number in c language