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