Click here to Skip to main content
15,905,144 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questiondrive info Pin
sundar_mca2-Mar-06 0:19
sundar_mca2-Mar-06 0:19 
AnswerRe: drive info Pin
ThatsAlok2-Mar-06 18:45
ThatsAlok2-Mar-06 18:45 
QuestionHelp with IHttpNegotiate Pin
acroitor2-Mar-06 0:06
acroitor2-Mar-06 0:06 
QuestionCSocket ASSERTS on Close Pin
Sarath C1-Mar-06 23:48
Sarath C1-Mar-06 23:48 
QuestionCWnd::CreateControl error when create .NET control Pin
JohanOdin1-Mar-06 23:46
JohanOdin1-Mar-06 23:46 
Questionconverting Hex to int Pin
chaitanya221-Mar-06 23:04
chaitanya221-Mar-06 23:04 
AnswerRe: converting Hex to int Pin
Naveen1-Mar-06 23:09
Naveen1-Mar-06 23:09 
AnswerRe: converting Hex to int Pin
toxcct1-Mar-06 23:10
toxcct1-Mar-06 23:10 
GeneralRe: converting Hex to int Pin
chaitanya221-Mar-06 23:25
chaitanya221-Mar-06 23:25 
GeneralRe: converting Hex to int Pin
toxcct1-Mar-06 23:28
toxcct1-Mar-06 23:28 
GeneralRe: converting Hex to int Pin
Cedric Moonen1-Mar-06 23:45
Cedric Moonen1-Mar-06 23:45 
GeneralRe: converting Hex to int Pin
toxcct1-Mar-06 23:47
toxcct1-Mar-06 23:47 
GeneralRe: converting Hex to int Pin
chaitanya222-Mar-06 1:41
chaitanya222-Mar-06 1:41 
GeneralRe: converting Hex to int Pin
Cedric Moonen2-Mar-06 2:18
Cedric Moonen2-Mar-06 2:18 
GeneralRe: converting Hex to binary Pin
chaitanya222-Mar-06 2:08
chaitanya222-Mar-06 2:08 
GeneralRe: converting Hex to binary Pin
Maximilien2-Mar-06 2:26
Maximilien2-Mar-06 2:26 
AnswerRe: converting Hex to int Pin
Roger Stoltz2-Mar-06 2:15
Roger Stoltz2-Mar-06 2:15 
GeneralRe: converting Hex to int Pin
chaitanya222-Mar-06 2:21
chaitanya222-Mar-06 2:21 
GeneralRe: converting Hex to int Pin
Cedric Moonen2-Mar-06 2:58
Cedric Moonen2-Mar-06 2:58 
Cry | :(( Cry | :((
Even with the explanation of the apples you still don't get it. In other tearms: hex numbers and decimal numbers doesn't exist (it's a bad use of the language). Instead you should say hexadecimal REPRESENTATION or binary REPRESENTATION of a number.

Let's take an example:
int BinValue = 0b1100101;   // In binary
int HexValue = 0x65;   // In hexadecimal
int DecValue = 101;   // In decimal 


In this example, all three numbers are exactly the same and if you compare them, the result will be true.

Hope it is clear now.
AnswerRe: converting Hex to int Pin
Konrad Windszus2-Mar-06 3:59
Konrad Windszus2-Mar-06 3:59 
QuestionFunction with default argument Pin
vikramlinux1-Mar-06 23:00
vikramlinux1-Mar-06 23:00 
AnswerRe: Function with default argument Pin
toxcct1-Mar-06 23:02
toxcct1-Mar-06 23:02 
GeneralRe: Function with default argument Pin
vikramlinux1-Mar-06 23:10
vikramlinux1-Mar-06 23:10 
GeneralRe: Function with default argument Pin
toxcct1-Mar-06 23:12
toxcct1-Mar-06 23:12 
AnswerRe: Function with default argument Pin
Stephen Hewitt1-Mar-06 23:12
Stephen Hewitt1-Mar-06 23:12 

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.