Click here to Skip to main content
15,929,812 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: typeid operator Pin
kfaday19-Apr-04 7:01
kfaday19-Apr-04 7:01 
GeneralRe: typeid operator Pin
jmkhael19-Apr-04 7:03
jmkhael19-Apr-04 7:03 
GeneralRe: typeid operator Pin
kfaday19-Apr-04 7:07
kfaday19-Apr-04 7:07 
GeneralRe: typeid operator Pin
jmkhael19-Apr-04 7:14
jmkhael19-Apr-04 7:14 
GeneralRe: typeid operator Pin
kfaday19-Apr-04 7:48
kfaday19-Apr-04 7:48 
GeneralRe: typeid operator Pin
antlers19-Apr-04 12:04
antlers19-Apr-04 12:04 
GeneralRe: typeid operator Pin
kfaday19-Apr-04 13:35
kfaday19-Apr-04 13:35 
GeneralRe: typeid operator Pin
toxcct19-Apr-04 8:31
toxcct19-Apr-04 8:31 
you deference a pointer when you don't get the address it contains but when you get what is at the pointed address.
<font style="color:blue;">char</font>* pc = (<font style="color:blue;">char</font>*)malloc(<font style="color:blue;">sizeof</font>(<font style="color:blue;">char</font>));     <font style="color:green;">// my pointer (something like 0x0A78DQ43)</font>
*pc = 'a';                                  <font style="color:green;">// dereferenced pointer (acsii code for 'a' caracter)</font>

 
 pc : simple pointer (cointaining an address)
*pc : dereferenced pointer (value at the pointed address)



TOXCCT >>> GEII power


GeneralResponding to messages raised by another process Pin
Member 103146319-Apr-04 3:51
Member 103146319-Apr-04 3:51 
GeneralRe: Responding to messages raised by another process Pin
toxcct19-Apr-04 4:14
toxcct19-Apr-04 4:14 
GeneralAnything Wrong Pin
monrobot1319-Apr-04 3:41
monrobot1319-Apr-04 3:41 
GeneralRe: Anything Wrong Pin
Antony M Kancidrowski19-Apr-04 4:03
Antony M Kancidrowski19-Apr-04 4:03 
GeneralRe: Anything Wrong Pin
monrobot1319-Apr-04 4:15
monrobot1319-Apr-04 4:15 
GeneralRe: Anything Wrong Pin
David Crow19-Apr-04 5:17
David Crow19-Apr-04 5:17 
GeneralRe: Anything Wrong Pin
Mike Dimmick19-Apr-04 6:10
Mike Dimmick19-Apr-04 6:10 
GeneralRe: Anything Wrong Pin
monrobot1319-Apr-04 16:06
monrobot1319-Apr-04 16:06 
GeneralRe: Anything Wrong Pin
Mike Dimmick20-Apr-04 8:37
Mike Dimmick20-Apr-04 8:37 
GeneralRe: Anything Wrong Pin
monrobot1322-Apr-04 6:31
monrobot1322-Apr-04 6:31 
GeneralDNS to IP Pin
Irish_GUI19-Apr-04 3:41
Irish_GUI19-Apr-04 3:41 
GeneralRe: DNS to IP Pin
monrobot1319-Apr-04 4:12
monrobot1319-Apr-04 4:12 
GeneralRe: DNS to IP Pin
Irish_GUI19-Apr-04 4:47
Irish_GUI19-Apr-04 4:47 
GeneralRe: DNS to IP Pin
monrobot1319-Apr-04 5:05
monrobot1319-Apr-04 5:05 
GeneralRe: DNS to IP Pin
RobJones19-Apr-04 5:08
RobJones19-Apr-04 5:08 
GeneralRe: DNS to IP Pin
Irish_GUI19-Apr-04 9:36
Irish_GUI19-Apr-04 9:36 
GeneralRe: DNS to IP Pin
Irish_GUI19-Apr-04 9:39
Irish_GUI19-Apr-04 9:39 

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.