Home / General Knowledge / Testing New :: Discussion

Discussion :: Testing New

  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 not a far pointer.


Be The First To Comment