Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. What will be the output?

        double var = 8;
        int main()
        {
            int var = 5;
            printf("%d", var);
        }
  2. A.
    5
    B.
    8
    C.
    Compile time error due to wrong format identifier for double
    D.
    Compile time error due to redeclaration of variable with same name

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    None.


Be The First To Comment