Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I achieve these conversions in C without using sprintf?

20 => 0x20
12 => 0x12

Currently I have:

int year = 12;
int month = 10;
int day = 9;
unsigned char date[3];

date[0] = year & 0xFF;
date[1] = month & 0xFF;
date[2] = day & 0xFF;

date will contain { 0x0C, 0x0A, 0x09 } but I want it to be { 0x12, 0x10, 0x09 }

share|improve this question
I would hesitate to call this "converting". – Kerrek SB Oct 9 '12 at 11:08

2 Answers

up vote 4 down vote accepted

For the limited 2-digit range you're using:

assert(year >= 0 && year < 100);
date[0] = (year / 10) * 16 + (year % 10);

etc.

You could express it as ((year / 10) << 4) | (year % 10) if that makes more sense to you.

share|improve this answer

You just have to retrieve each digit in decimal base en multiply it to its equivalent in hexadecinal.

#include <stdio.h>

int hex(int v){
int total = 0;
int resultbase = 1;
while(v > 0 ){
    total += resultbase * (v % 10);
    resultbase *= 16;
    v /= 10;
}

return total;
}

 int  main(){
printf ("12 => %x, 20 => %x\n", hex(12), hex(20));
return 0;

}

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.