Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. What is the output of this C code?

        void main()
        {
            int x = 97;
            char y = x;
            printf("%c\n", y);
        }

  2. A.
    a
    B.
    b
    C.
    97
    D.
    Run time error

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    None.


Be The First To Comment