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

51,811 answers

573 users

How to concatenate a std::string and an int with C++

2 Answers

0 votes
#include <iostream>

int main() {
    std::string str = "C++";
    int n = 42;

    std::string result = str + std::to_string(n);

    std::cout << result << std::endl;
}


 
/*
run:

C++42

*/

 



answered Jan 24, 2025 by avibootz
0 votes
#include <iostream>
#include <sstream> 

int main() {
    std::string str = "C++";
    int n = 42;

    std::stringstream sstm;
    sstm << str << n;
    std::string result = sstm.str();

    std::cout << result << std::endl;
}


 
/*
run:

C++42

*/

 



answered Jan 24, 2025 by avibootz

Related questions

1 answer 102 views
1 answer 60 views
1 answer 78 views
1 answer 101 views
1 answer 111 views
1 answer 141 views
141 views asked Feb 26, 2022 by avibootz
...