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 180 views
1 answer 176 views
1 answer 142 views
142 views asked Sep 19, 2021 by avibootz
1 answer 208 views
1 answer 142 views
142 views asked Sep 18, 2021 by avibootz
1 answer 131 views
131 views asked Sep 17, 2021 by avibootz
...