Is the following declaration correct?typedef *void (*pfun)(**int, *float);
View Answer
Workspace
Discuss in Forum
Share
Copy Text
Copy URL
As Image
Answer : Option B
Explanation :
No answer description available for this question. Let us discuss
Is the following declaration correct?char (* ( *f())[])();
Answer : Option A
f is a function that returns a pointer to an array of pointers to functions that return a char.
Is the following declaration correct?char far *far *ptr;
ptr is a far pointer to a far pointer to a char. (or) ptr contains a far address of a far pointer to a char
Is the following declaration correct?void(*f)(int, void(*)());
f is a pointer to a function which returns nothing and receives as its parameter an integer and a pointer to a function which receives nothing and returns nothing.
Are the following declarations same?
char far *far *scr; char far far** scr;