Click here to Skip to main content
15,900,906 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to wrap one .EXE inside another Pin
toxcct31-Aug-05 21:02
toxcct31-Aug-05 21:02 
JokeRe: How to wrap one .EXE inside another Pin
ThatsAlok31-Aug-05 19:14
ThatsAlok31-Aug-05 19:14 
Questionhow to convert a integer from hex to decimal Pin
xiaohe52130-Aug-05 23:06
xiaohe52130-Aug-05 23:06 
AnswerRe: how to convert a integer from hex to decimal Pin
toxcct30-Aug-05 23:16
toxcct30-Aug-05 23:16 
AnswerRe: how to convert a integer from hex to decimal Pin
Cedric Moonen30-Aug-05 23:16
Cedric Moonen30-Aug-05 23:16 
AnswerRe: how to convert a integer from hex to decimal Pin
Marc Soleda30-Aug-05 23:23
Marc Soleda30-Aug-05 23:23 
GeneralRe: how to convert a integer from hex to decimal Pin
xiaohe52130-Aug-05 23:41
xiaohe52130-Aug-05 23:41 
GeneralRe: how to convert a integer from hex to decimal Pin
toxcct30-Aug-05 23:45
toxcct30-Aug-05 23:45 
an integer is an integer !!!!

it is stored as a serie of bits in memory, wether you stored an hexa value, an octal one, or a decimal one...

int i = 0x05;
//i contains <code>00000000 00000000 00000000 00000101</code>
 
<hr>
 
int i = \005;
//i contains <code>00000000 00000000 00000000 00000101</code>
 
<hr>
 
int i = 5;
//i contains <code>00000000 00000000 00000000 00000101</code>



TOXCCT >>> GEII power
[toxcct][VisualCalc]
GeneralRe: how to convert a integer from hex to decimal Pin
Cedric Moonen30-Aug-05 23:46
Cedric Moonen30-Aug-05 23:46 
GeneralRe: how to convert a integer from hex to decimal Pin
Marc Soleda31-Aug-05 0:07
Marc Soleda31-Aug-05 0:07 
GeneralRe: how to convert a integer from hex to decimal Pin
Nishad S31-Aug-05 0:36
Nishad S31-Aug-05 0:36 
GeneralRe: how to convert a integer from hex to decimal Pin
markkuk31-Aug-05 2:04
markkuk31-Aug-05 2:04 
Jokejust like this.. Pin
Eytukan31-Aug-05 0:35
Eytukan31-Aug-05 0:35 
JokeRe: just like this.. Pin
toxcct31-Aug-05 1:58
toxcct31-Aug-05 1:58 
Questionhow can i get all the arguments in the va_list Pin
bbluey30-Aug-05 22:53
bbluey30-Aug-05 22:53 
AnswerRe: how can i get all the arguments in the va_list Pin
Bob Ciora31-Aug-05 1:22
Bob Ciora31-Aug-05 1:22 
GeneralRe: how can i get all the arguments in the va_list Pin
bbluey31-Aug-05 2:14
bbluey31-Aug-05 2:14 
GeneralRe: how can i get all the arguments in the va_list Pin
Rick York31-Aug-05 7:56
mveRick York31-Aug-05 7:56 
GeneralRe: how can i get all the arguments in the va_list Pin
bbluey31-Aug-05 22:03
bbluey31-Aug-05 22:03 
QuestionThru Windows Service connecting to SQL server database using windows authentication Pin
Nassa30-Aug-05 22:52
Nassa30-Aug-05 22:52 
QuestionHow to use the struct in the VC.Net? Pin
greenwyx30-Aug-05 22:02
greenwyx30-Aug-05 22:02 
AnswerRe: How to use the struct in the VC.Net? Pin
toxcct30-Aug-05 22:17
toxcct30-Aug-05 22:17 
GeneralRe: How to use the struct in the VC.Net? Pin
greenwyx30-Aug-05 22:49
greenwyx30-Aug-05 22:49 
GeneralRe: How to use the struct in the VC.Net? Pin
toxcct30-Aug-05 22:54
toxcct30-Aug-05 22:54 
GeneralRe: How to use the struct in the VC.Net? Pin
greenwyx30-Aug-05 23:02
greenwyx30-Aug-05 23:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.