Vidyalelo
C++ Programming · Q134

Functions and Procedures in C++

Programming · C++ Programming · question 134

Q134

What will be the output of the following C++ code? #include using namespace std; int max(int a, int b ) return ( a > b ? a : b ); int main() int i = 5; int j = 7; cout << max(i, j ); return 0;

A.
5
B.
7
Answer
C.
either 5 or 7
D.
13

Answer: Option B

Solution

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