46
GB
What is the output: int f(int a,int b=2,int c=3){return a*b*c;} cout<
IN
आउटपुट क्या है: int f(int a,int b=2,int c=3){return a*b*c;} cout
A
61220
61220
B
Compile error
संकलन त्रुटि
C
Undefined
अपरिभाषित
D
6 12 20
6 12 20
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English)
f(1)=1*2*3=6; f(1,4)=1*4*3=12; f(1,4,5)=1*4*5=20. Output: 61220.
व्याख्या (हिन्दी)
f(1)=1*2*3=6; f(1,4)=1*4*3=12; f(1,4,5)=1*4*5=20. आउटपुट: 61220.