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 141 views
1 answer 136 views
1 answer 156 views
3 answers 221 views
221 views asked Jun 13, 2017 by avibootz
1 answer 137 views
1 answer 178 views
178 views asked Jan 5, 2021 by avibootz
1 answer 226 views
...