Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. What is the output of this C code?

        int main()
        {
            float a = 5.477777777777;
            printf("%f", a);
        }
  2. A.
    5.477777
    B.
    5.477778
    C.
    5.478
    D.
    5.48

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    None.


Be The First To Comment