Guest User

Untitled

a guest
May 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. #include <algorithm>
  4. using namespace std;
  5.  
  6. void recurse(){
  7.     recurse();
  8. }
  9.  
  10. int main(){
  11.     vector<int> A,B,C;
  12.     A.push_back(1); B.push_back(1);
  13.     vector<int>::iterator ite=set_intersection(A.begin(),A.end(),B.begin(),B.end(),C.begin());
  14. }
Add Comment
Please, Sign In to add comment