CJCoding With Joseph
15per day
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C++ Quiz #15

Function Overloading

mediumFunctions

What is the output of this code?

📄 Code

1#include <iostream>
2using namespace std;
3 
4int add(int a, int b) {
5 return a + b;
6}
7 
8double add(double a, double b) {
9 return a + b;
10}
11 
12int main() {
13 cout << add(3, 4) << endl;
14 cout << add(1.5, 2.5) << endl;
15 return 0;
16}