Home / C Programming / Complicated Declarations :: Discussion

Discussion :: Complicated Declarations

  1. Is the following declaration correct?
    char far *far *ptr;

  2. A.
    Yes
    B.
    No

    View Answer

    Workspace

    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