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,914 questions

51,847 answers

573 users

How to concatenate two strings in C++

4 Answers

0 votes
#include <iostream>

int main() {
    std::string s1 = "c++ programming";
    std::string s2 = "c programming";

    s1 += " " + s2;
    
    std::cout << s1;
}




/*
run:

c++ programming c programming

*/

 



answered May 10, 2021 by avibootz
edited May 15, 2024 by avibootz
0 votes
#include <iostream>

int main() {
    std::string s = "c++ programming";

    s.append(" c programming");
    
    std::cout << s;
}




/*
run:

c++ programming c programming

*/

 



answered May 10, 2021 by avibootz
edited May 15, 2024 by avibootz
0 votes
#include <iostream>

int main() {
    std::string s = "c++ programming";

    s.append(" ").append("c programming").append("\n");
    
    std::cout << s;
}




/*
run:

c++ programming c programming

*/

 



answered May 10, 2021 by avibootz
edited May 15, 2024 by avibootz
0 votes
#include <iostream>
#include <string>
 
int main()
{
    std::string s1 = "c++ c c#";
    std::string s2 = " java python";
    std::string s3;
 
    s3 = s1 + s2;
 
    std::cout << s3 << std::endl;
}
 
 
 
/*
run:
 
c++ c c# java python
 
*/

 



answered May 15, 2024 by avibootz

Related questions

1 answer 128 views
1 answer 122 views
1 answer 142 views
3 answers 195 views
195 views asked Jun 13, 2017 by avibootz
1 answer 129 views
1 answer 166 views
166 views asked Jan 5, 2021 by avibootz
1 answer 211 views
...