|
|
A collection of useful items to deal with WinDbg. For me and possibly for others. |
based on editor's review
![]() Editor reviews are provided by professional editors who evaluate a blog based on the following criteria: Frequency of Updates, Relevance of Content, Site Design, and Writing Style.
Related BlogsSimple ThoughtsIndia, java, Linux, software, switch, windows Stefan Prodan's space interface, provider, related, session, smartphone mthandenisoracle beta, Linux, network, release Rob Malon automated, data, guide, line, spam PHP Web Developer India blog, developer, India, joomla, license |
Displaying dynamically allocated c arraysDec 4, 2009
I just analyzed a crash dump were I needed to investigate a dynamically allocated a array.
We have a declaration:
CString **ids;
the allocation
ids = new CString*[size];
Given a size of 8 you can dump the content of the string array with...
|
||
|
||



