Обсуждения
Reminder 14 quotient 48 =?
-4 голосов
10 ответовHow is it come the result 48
5 голосов
13 ответов#include <iostream>
using namespace std;
int sum(int a, int b=42) {
int result = a + b;
return (result);
}
int main() {
int x = 24;
int y = 36;
//calling the function with both parameters
int result = sum(x, y);
cout << result << endl;
//calling the function without b
result = sum(x);
cout << result << endl;
return 0;
}
why is da last function cout 66 and not 48 isn't it suppose to add 24+24?
1 голос
6 ответовАктуальное сегодня
Functions in python
2 Votes
HTML
1 Votes
For Mobile app
0 Votes
Answer please
0 Votes
I need advice
0 Votes
I need advice
0 Votes