Vidyalelo
C++ Programming · Q96

Standard Template Library (STL) in C++

Programming · C++ Programming · question 96

Q96

What will be the output of the following C++ code? #include #include int main () int n, m; n = abs(23); m = abs(-11); printf ("%d", n); printf ("%d", m); return 0;

A.
23-11
B.
1123
C.
2311
Answer
D.
4325

Answer: Option C

Solution

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