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

51,861 answers

573 users

How to convert string characters into hexadecimal in C

1 Answer

0 votes
#include <stdio.h>
#include <string.h>
 
int main()
{
    char s[64] = "sdjfh1@", s_hex[128];
     
    printf("s: %s\n", s);
     
    memset(s_hex, 0, sizeof(s_hex));

    int i, j;     
    for(i = 0, j = 0; i < strlen(s); i++, j += 3) { 
        sprintf((char*)s_hex + j,"%02X ", s[i]);
    }
    s_hex[j] = '\0'; 
     
    printf("hex: %s\n", s_hex);
     
    return 0;
}

     
/*
       
run:
 
s: sdjfh1@
hex: 73 64 6A 66 68 31 40

*/

 



answered Jul 7, 2018 by avibootz

Related questions

1 answer 195 views
1 answer 127 views
127 views asked Sep 18, 2021 by avibootz
1 answer 143 views
143 views asked Sep 18, 2021 by avibootz
1 answer 164 views
2 answers 257 views
3 answers 319 views
...