Examveda
Examveda

What will be the output of the following C code?
#include <stdio.h>
void main()
{
    int h = 8;
    int b = 4 * 6 + 3 * 4 < 3 ? 4 : 3;
    printf("%d\n", b);
}

A. 3

B. 33

C. 34

D. Run time error

Answer: Option A


This Question Belongs to C Program >> C Fundamentals

Join The Discussion

Related Questions on C Fundamentals