What will be the output of the following C code?
#include<stdio.h>
main()
{
typedef int a;
a b=2, c=8, d;
d=(b*2)/2+8;
printf("%d",d);
}
#include<stdio.h>
main()
{
typedef int a;
a b=2, c=8, d;
d=(b*2)/2+8;
printf("%d",d);
}
A. 10
B. 16
C. 8
D. error
Answer: Option A
Join The Discussion