Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. What will be the output?

        int main()
        {
            printf("%d", d++);
        }
        int d = 10;

  2. A.
    9
    B.
    10
    C.
    11
    D.
    Compile time error

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    None.


Be The First To Comment