Обсуждения
How do i create a function in C?
0 голосов
6 ответовWhat is the difference between?
0 голосов
6 ответовdefault arguement ?
0 голосов
2 ответовPassing array of pointers
1 голос
10 ответовPython: return functions
2 голосов
3 ответов#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 ответовIntro to Functional Programming
0 голосов
6 ответовPython function
1 голос
2 ответовwhat is arguments?
1 голос
2 ответовЗначения по умолчанию для параметров
-2 голосов
8 ответовcommand line aregumente
0 голосов
3 ответовWhere did I go wrong?
1 голос
16 ответовWhere does the return value go?
0 голосов
4 ответовmap function
1 голос
4 ответовParseInt(readline(),18)
0 голосов
3 ответовPython functions
1 голос
7 ответовExplain this code.
0 голосов
4 ответовАктуальное сегодня
Which is the error in this code
1 Votes
Control Flow
2 Votes
Animations
2 Votes
How to use the get() method
2 Votes
Game Dev Path
1 Votes
So this what I'm trying to solve
2 Votes
How to get account back?
1 Votes
PHP Tutorial Idea
1 Votes
Problem whit Javascript
1 Votes