Code::Blocks Forums

User forums => General (but related to Code::Blocks) => Topic started by: facat on April 09, 2011, 08:24:26 pm

Title: how to watch the value of an array in Nightly Debug Branch?
Post by: facat on April 09, 2011, 08:24:26 pm
i was using the nightly debug branch of CB. i added my interesting array to the watch window, ticked the "Watch as array" and set the count. However it said "Cannot access memory at address 0x0". how can i see the value of my array?
Title: Re: how to watch the value of an array in Nightly Debug Branch?
Post by: Jenna on April 09, 2011, 08:55:45 pm
Are you sure you try to watch a valid array ?
Title: Re: how to watch the value of an array in Nightly Debug Branch?
Post by: facat on April 10, 2011, 03:01:55 am
Are you sure you try to watch a valid array ?

yes, i tried to watch a dynamically allocated array.
Title: Re: how to watch the value of an array in Nightly Debug Branch?
Post by: oBFusCATed on April 10, 2011, 03:33:23 am
What is the type of the array?
Are you sure that the pointer is not pointing to NULL?
GDB is telling you just this:)
Title: Re: how to watch the value of an array in Nightly Debug Branch?
Post by: facat on April 10, 2011, 07:02:01 pm
What is the type of the array?
Are you sure that the pointer is not pointing to NULL?
GDB is telling you just this:)
ok. it was solved. i made a mistake. thk you.