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);
}
#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
Join The Discussion