Click here to Skip to main content
15,891,633 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Again ,again CListCtrl ! Pin
#realJSOP30-May-07 3:21
mve#realJSOP30-May-07 3:21 
QuestionACL Pin
vivekphlp30-May-07 2:07
vivekphlp30-May-07 2:07 
AnswerRe: ACL Pin
David Crow30-May-07 6:12
David Crow30-May-07 6:12 
AnswerRe: ACL Pin
Hamid_RT30-May-07 8:52
Hamid_RT30-May-07 8:52 
QuestionSetup Maker Pin
garfield18530-May-07 1:47
garfield18530-May-07 1:47 
AnswerRe: Setup Maker Pin
Hamid_RT30-May-07 2:28
Hamid_RT30-May-07 2:28 
QuestionSimple pointer question... Pin
Haroon Sarwar30-May-07 1:32
Haroon Sarwar30-May-07 1:32 
AnswerRe: Simple pointer question... [modified] Pin
Nibu babu thomas30-May-07 1:49
Nibu babu thomas30-May-07 1:49 
Haroon Sarwar wrote:
char test[] = "Hello";


This is an array of characters. This is not a pointer.


Haroon Sarwar wrote:
char* test = "Hello";


This is a pointer to an array of characters. Note that test will contain the address of the given array and not the real data.

For proof enter the following in the debugger

&test
test
ptest
&ptest

You will see that the first two are same, but the last two are not.


Nibu thomas
A Developer

Code must be written to be read, not by the compiler, but by another human being.

http:\\nibuthomas.wordpress.com

AnswerRe: Simple pointer question... Pin
CPallini30-May-07 2:11
mveCPallini30-May-07 2:11 
AnswerRe: Simple pointer question... Pin
Matthew Faithfull30-May-07 2:20
Matthew Faithfull30-May-07 2:20 
AnswerRe: Simple pointer question... Pin
David Crow31-May-07 3:32
David Crow31-May-07 3:32 
QuestionAgain CListCtrl Pin
Bravoone_200630-May-07 1:01
Bravoone_200630-May-07 1:01 
AnswerRe: Again CListCtrl Pin
Naveen30-May-07 1:05
Naveen30-May-07 1:05 
QuestionRe: Again CListCtrl Pin
Bravoone_200630-May-07 1:08
Bravoone_200630-May-07 1:08 
AnswerRe: Again CListCtrl Pin
Naveen30-May-07 1:13
Naveen30-May-07 1:13 
GeneralRe: Again CListCtrl Pin
Bravoone_200630-May-07 1:16
Bravoone_200630-May-07 1:16 
GeneralRe: Again CListCtrl Pin
Naveen30-May-07 1:22
Naveen30-May-07 1:22 
QuestionRe: Again CListCtrl Pin
Bravoone_200630-May-07 1:30
Bravoone_200630-May-07 1:30 
QuestionRe: Again CListCtrl Pin
Bravoone_200630-May-07 1:42
Bravoone_200630-May-07 1:42 
AnswerRe: Again CListCtrl Pin
Hamid_RT30-May-07 2:24
Hamid_RT30-May-07 2:24 
AnswerRe: Again CListCtrl [modified] Pin
#realJSOP30-May-07 3:10
mve#realJSOP30-May-07 3:10 
QuestionRe: Again CListCtrl Pin
David Crow30-May-07 3:58
David Crow30-May-07 3:58 
AnswerRe: Again CListCtrl Pin
#realJSOP30-May-07 4:23
mve#realJSOP30-May-07 4:23 
GeneralRe: Again CListCtrl Pin
David Crow30-May-07 4:29
David Crow30-May-07 4:29 
GeneralRe: Again CListCtrl Pin
#realJSOP30-May-07 4:36
mve#realJSOP30-May-07 4:36 

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.