-
convert hex to int
Hi folks
I have the following
dbgprint("Lower provider socket = 0x%x LSP Socket = 0x%x\n", NextProviderSocket, NewSocket);
which outputs the hex value of NextProviderSocket, NewSocket..
How can i convert that to integer value?? what is the conversion code??
would appreciate your response:confused:
-
Change %x to %i for displaying signed integers, or to %u for unsigned integers.
-
lookup the format expressions for the printf family. Your dbgprint makes definitely use of one of them.
-
Thank you very much for your help... you solved my problem.