0
What is the output of the following code?
void printSum(int a, int b = 4) { cout << a + b << endl; } int main() { printSum(13); }
3 Respuestas
0
You can paste your code to code playground and run it.
0
17
0
4=13
answer 17
void printSum(int a, int b = 4) { cout << a + b << endl; } int main() { printSum(13); }