Vidyalelo
C++ Programming · Q84

Standard Template Library (STL) in C++

Programming · C++ Programming · question 84

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
Answer
C.
4
D.
9

Answer: Option B

Solution

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