Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. What is the output of this C code?

    int main()
    {
    int x = 1;
    short int i = 2;
    float f = 3;
    if (sizeof((x == 2) ? f : i) == sizeof(float))
    printf("float\n");
    else if (sizeof((x == 2) ? f : i) == sizeof(short int))
    printf("short int\n");
    }
  2. A.
    float
    B.
    short int
    C.
    Undefined behaviour
    D.
    Compile time error

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    None.


Be The First To Comment