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

51,869 answers

573 users

How to convert char array to hexadecimal in string C++

1 Answer

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

int main() {
    char array[] = {'a', 'b', 'c', 'd', 'e', 'x', 'y'};
    int len = sizeof(array)/sizeof(array[0]);
    
    std::stringstream ss;
    
    for (int i=0; i < len; i++)
        ss << std::hex << (int)array[i];

    std::string s = ss.str();
        
    std::cout << s;
    
    return 0;
}



  
/*
run:
  
61626364657879 
 
*/

 



answered Sep 20, 2021 by avibootz

Related questions

1 answer 165 views
1 answer 158 views
1 answer 127 views
127 views asked Sep 19, 2021 by avibootz
1 answer 179 views
1 answer 113 views
113 views asked Sep 17, 2021 by avibootz
1 answer 110 views
110 views asked Aug 25, 2021 by avibootz
...