Vidyalelo
C++ Programming · Q75

Functions and Procedures in C++

Programming · C++ Programming · question 75

Q75

What will be the output of the following C++ code? #include using namespace std; int operate (int a, int b) return (a * b); float operate (float a, float b) return (a / b); int main() int x = 5, y = 2; float n = 5.0, m = 2.0; cout << operate(x, y) <<" "; cout << operate (n, m); return 0;

A.
10.0 5.0
B.
5.0 2.5
C.
10.0 5
D.
10 2.5
Answer

Answer: Option D

Solution

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