Home / C Programming / C Miscellaneous :: Discussion

Discussion :: C Miscellaneous

  1. Determine Output:

    void main()

    {

    char far *farther, *farthest;

    printf("%d..%d", sizeof(farther), sizeof(farthest));

    }

  2. A.

     4..2

    B.

     2..2

    C.

     4..4

    D.

     2..4

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    The second pointer is of char type and is not a far pointer.


Be The First To Comment