Solved

Which of the Following Is the Proper Method to Dynamically

Question 6

Multiple Choice

Which of the following is the proper method to dynamically allocate memory to an array of 100 elements


A) var c = new c[ 100 ];
B) var c = new c( 100 ) ;
C) var c = new Array[ 100 ];
D) var c = new Array( 100 ) ;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions