Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

dec to hex conversion in keil

Status
Not open for further replies.

swapnil_vlsi

Full Member level 1
Joined
Jul 18, 2007
Messages
95
Helped
7
Reputation
14
Reaction score
5
Trophy points
1,288
Activity points
1,900
AM using a keil compiler & have to convert dec to hex
so please anybody can tell me how can i do this in keil (embedded c)
 

Hi Swapnil_vlsi,
The decimal to hex conversion logic is a generic one. It doesn't depend on the compiler. The logic is the same old one. You divide the number by 16. Save the quotient. Get the reminder. Divide this reminder by 16. Repeat this process until you get a number that you can't divide by 16 and you have only a remainder.

Regards,
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top