Vidyalelo
C++ Programming · Q65

Variables and Data Types in C++

Programming · C++ Programming · question 65

Q65

What will be the output of the following C++ code? #include using namespace std; int f(int p, int q) if (p > q) return p; else return q; main() int a = 5, b = 10; int k; bool x = true; bool y = f(a, b); k =((a * b) + (x + y)); cout << k;

A.
55
B.
62
C.
52
Answer
D.
75

Answer: Option C

Solution

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