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?
Are you sure you try to watch a valid array ?
Quote from: jens on April 09, 2011, 08:55:45 PM
Are you sure you try to watch a valid array ?
yes, i tried to watch a dynamically allocated array.
What is the type of the array?
Are you sure that the pointer is not pointing to NULL?
GDB is telling you just this:)
Quote from: 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:)
ok. it was solved. i made a mistake. thk you.