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

51,870 answers

573 users

How to convert string to hexadecimal and store it into a vector with C++

1 Answer

0 votes
#include <iostream>
#include <sstream>
#include <vector>

int main()
{
    std::string s = "C++ Programming";

    std::vector <std::string> v;

    for (size_t i = 0; i < s.size(); i++) {
        std::ostringstream oss;
        oss << std::hex << (int) s[i];
        v.push_back(oss.str());
    }

    for (size_t i = 0; i < s.size(); i++) {
        std::cout << v[i] << " ";
    }
    
    return 0;
}




/*
run:

43 2b 2b 20 50 72 6f 67 72 61 6d 6d 69 6e 67 

*/

 



answered Sep 19, 2021 by avibootz
edited Sep 19, 2021 by avibootz
...