devxlogo

Viewing Dynamically Allocated Arrays In VC++

Viewing Dynamically Allocated Arrays In VC++

Normally, when you allocate an array using new or malloc in VC++, you can only see the first element when you look at the variable in the watch window. To view the entire array, just type the variable-name and number-of-elements-to-view.

 //Example:int main( void ){	const int SIZE = 10;	int *intArray = 0;	intArray = new int[SIZE] ;	for( int x = 0; x 

size=3>
To see intArray in the watch window, type:

 intArray, 10

size=3>
and it will expand out for the entire array. To see first five elements, type:

 intArray, 5

size=3>
To see elements 4 elements after intArray[3], type:

 (intArray + 3), 4

size=3>

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist