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; x++ )	{		intArray[x] = 10 + x;	}     return 0;}


To see intArray in the watch window, type:

 intArray, 10


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

 intArray, 5


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

 (intArray + 3), 4

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular