How to concatenate (join) two tuples into a new tuple in C++

1 Answer

0 votes
#include <iostream>
#include <tuple> 
  
using namespace std; 
  
int main()
{
    tuple <char, int, float, string> t1('z', 89, 3.14, "c++");
    tuple <char, int, float, string> t2('a', 21, 1.82, "java");
       
    auto t3 = tuple_cat(t1, t2); 
    
    cout << get<0>(t3) << endl;
    cout << get<1>(t3) << endl;
    cout << get<2>(t3) << endl;    
    cout << get<3>(t3) << endl;
     
    cout << get<4>(t3) << endl;
    cout << get<5>(t3) << endl;
    cout << get<6>(t3) << endl;    
    cout << get<7>(t3) << endl;
      
    return 0;
}
  
  
  
/*
run:
  
z
89
3.14
c++
a
21
1.82
java
  
*/

 



answered Feb 8, 2020 by avibootz

Related questions

2 answers 295 views
1 answer 165 views
2 answers 203 views
1 answer 167 views
167 views asked Dec 18, 2018 by avibootz
1 answer 198 views
...