Q82
What will be the output of the following C code if the value of 'p' is 10 and that of 'q' is 15? #include int main() int p,q; printf("Enter two numbers "); scanf("%d",&p); scanf("%d",&q); #if(4 -1) printf("%d",q); #else printf("bye"); #endif
A.
10
B.
15
AnswerC.
bye
D.
error
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board