Home / General Knowledge / Testing New :: Discussion

Discussion :: Testing New

  1. What will be the output of the following program code?

    #include <stdio.h>

    void main()

    {

    int i=3, *j, **k;

    j = &i;

    k = &j;

    printf("%d%d%d", *j, **k, *(*k));

    }

  2. A.

     444

    B.

     000

    C.

     333

    D.

     433

    E.

     Garbage Value

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    Explanation Not Provided


Be The First To Comment