Examveda
Examveda

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

A. 6

B. 15

C. 13

D. 21

Answer: Option B


This Question Belongs to C Program >> C Fundamentals

Join The Discussion

Related Questions on C Fundamentals