Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,844 questions

51,765 answers

573 users

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 260 views
1 answer 156 views
2 answers 191 views
1 answer 158 views
158 views asked Dec 18, 2018 by avibootz
1 answer 181 views
...