Vidyalelo
C Programming · Q126

C Fundamentals

Programming · C Programming · question 126

Q126

What will be the output of the following C code? #include int main() int x = 3, y = 2; int z = x 5; printf("%d ", z);

A.
1
Answer
B.
0
C.
3
D.
Compile time error

Answer: Option A

Solution

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