What will be the output of the following C code?
#include <stdio.h>
void main()
{
int a = 5 * 3 + 2 - 4;
printf("%d", a);
}
#include <stdio.h>
void main()
{
int a = 5 * 3 + 2 - 4;
printf("%d", a);
}
A. 13
B. 14
C. 12
D. 1 6
Answer: Option A
Join The Discussion