Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Which of the following correctly declares an array?

a) int array[10];
b) int array;
c) array{10};
d) array array[10];

Answer: a
Explanation: Because array variable and values need to be declared after the datatype only.

Join The Discussion