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

51,859 answers

573 users

How to display hex string as characters in C++

1 Answer

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

int main(void)
{
    std::string s = "432b2b2050726f6772616d6d696e67";
      
    size_t len = s.length();

    for(size_t i = 0; i < len; i += 2) {
        unsigned int n;   
        std::stringstream ss;
        ss << std::hex << s.substr(i, 2);
        ss >> n;
         
        std::cout << char(n);
    }

    return 0;
}
  
  
  
  
  
/*
run:
  
C++ Programming
 
*/

 



answered Sep 19, 2021 by avibootz

Related questions

1 answer 136 views
1 answer 187 views
2 answers 369 views
369 views asked Dec 29, 2021 by avibootz
1 answer 178 views
2 answers 134 views
134 views asked Sep 18, 2021 by avibootz
1 answer 131 views
2 answers 153 views
153 views asked Dec 29, 2021 by avibootz
...