Q132
What will be the output of the following C code? errno = 0; y = sqrt(2); if(errno == EDOM) printf("Invalid value "); else printf("Valid value ");
A.
Invalid value
B.
Valid value
AnswerC.
No output
D.
Compile error
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board