Vidyalelo
C Programming · Q70

C Preprocessor

Programming · C Programming · question 70

Q70

What will be the output of the following C code? #include #define a 2 main() int r; #define a 5 r=a*2; printf("%d",r);

A.
10
Answer
B.
4
C.
2
D.
5

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board