Discussion :: Complicated Declarations
-
Is the following declaration correct?
char far *far *ptr;
Answer : Option A
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
Be The First To Comment