Q84
What will be the output of the following C++ code? #include #include int main () div_t divresult; divresult = div (38, 5); printf ("%d ", divresult.rem); return 0;
A.
7
B.
3
AnswerC.
4
D.
9
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board