G
Giulio Veronesi
Hi,
set<int> s1, s2, s3;
....
set_intersection(s1.begin(), s1.end(), s2.begin(), s2.end(), ???);
What do I put at place of ??? to get in s3 the intersection between s1
and s2?
Thanks in advance,
Giulio
set<int> s1, s2, s3;
....
set_intersection(s1.begin(), s1.end(), s2.begin(), s2.end(), ???);
What do I put at place of ??? to get in s3 the intersection between s1
and s2?
Thanks in advance,
Giulio