1576
GB
What is the output: int f(int a,int b,int c){return a>b?(a>c?a:c):(b>c?b:c);} cout<
IN
आउटपुट क्या है: int f(int a,int b,int c){return a>b?(a>c?a:c):(b>c?b:c);} cout
A
7
7
B
5
5
C
Compile error
संकलन त्रुटि
D
Undefined
अपरिभाषित
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English)
a=3,b=7,c=5. a>b false: b>c?b:c=7. Output: 7.
व्याख्या (हिन्दी)
ए=3,बी=7,सी=5. a>b गलत: b>c?b:c=7. आउटपुट: 7.