Examveda
Examveda

What will be the output of the following C code?
#include <stdio.h>
void main()
{
    int a = 2 + 4 + 3 * 5 / 3 - 5;
    printf("%d", a);
}

A. 7

B. 6

C. 10

D. 9

Answer: Option B


This Question Belongs to C Program >> C Fundamentals

Join The Discussion

Related Questions on C Fundamentals