Home / General Knowledge / Testing sawaal :: Discussion

Discussion :: Testing sawaal

  1. void main()

    {

    char good *better, *best;

    printf( "%d..%d", sizeof(better), sizeof(best) );

    }

  2. A.
    1..2
    B.
    4..4
    C.
    4..2
    D.
    2..2

    View Answer

    Workspace

    Answer : Option C

    Explanation :


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


Be The First To Comment