1891
GB
What is the output: template class Pair2{T first,second; public:Pair2(T a,T b):first(a),second(b){} T min_()const{return firstsecond?first:second;}}; Pair2p(3,7); cout<
IN
आउटपुट क्या है: टेम्पलेट वर्ग Pair2{T प्रथम, द्वितीय; सार्वजनिक:जोड़ी2(टी ए,टी बी):पहला(ए),दूसरा(बी){} टी मिनट_() स्थिरांक{पहले लौटाएंदूसरा?पहला:दूसरा;}}; जोड़ी2पी(3,7); अदालत
A
37
37
B
73
73
C
Compile error
संकलन त्रुटि
D
Undefined
अपरिभाषित
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English)
min=3,max=7. Output: 37.
व्याख्या (हिन्दी)
न्यूनतम=3,अधिकतम=7. आउटपुट: 37.