Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. What is the output of this C code?


        int main()

        {

            int a = 1;

            if (a--)

                printf("True");

                if (a++)

                    printf("False");

        }

  2. A.
    True
    B.
    False
    C.
    True False
    D.
    No Output

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    none


Be The First To Comment