I have (coming on serial port) this string: "0002003A001100100008000D00020000"...this represents hex numbers like: 0002-003A-0011-0010-0008-000D-0002-10A3 in Hex ( 2-58-17-16-8-13-2-4529 in Decimal )...so I'm reading this entire string in a char array like charBufer[50] so each place on the buffer holds one ascii of the string.....the big question...how can I convert this entire string in a way that I can store the result of each Hex number in lets say another buffer like intBuffer[8]?...thanks in advance for your help