1126
GB
What is 'std::views::cartesian_product' (C++23)?
IN
'std::views::cartesian_product' (C++23) क्या है?
A
Yields all combinations from multiple ranges
कई श्रेणियों से सभी संयोजन प्राप्त होते हैं
B
A zip view
एक ज़िप दृश्य
C
A join view
एक सम्मिलित दृश्य
D
A merge view
एक मर्ज दृश्य
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English)
views::cartesian_product(r1,r2) yields (a,b) for all a in r1, b in r2.
व्याख्या (हिन्दी)
view::cartesian_product(r1,r2) r1 में सभी a, r2 में b के लिए (a,b) उत्पन्न करता है।