C Programming - Complicated Declarations - Discussion

Discussion Forum : Complicated Declarations - Yes / No Questions (Q.No. 3)
3.
Is the following declaration correct?
char far *far *ptr;
Yes
No
Answer: Option
Explanation:
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
Discussion:
6 comments Page 1 of 1.

Munish said:   1 decade ago
Can anyone explain it?

Ridhima said:   1 decade ago
When I try to compile it in gcc it won't work. This type of declaration is not allowed.

Raji said:   1 decade ago
If it is separated by comma then it will be acceptable.

Nivitha said:   1 decade ago
What does far pointer means?

Sharsh said:   9 years ago
How is it possible?

Anujah said:   7 years ago
How is this declaration possible? Please explain in detail.

Post your comments here:

Your comments will be displayed after verification.