a) array<type> arr;
b) array<type,size> arr;
c) Array<type> arr;
d) Array<type,size> arr;
Meghna MittalBegginer
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
b
Explanation: The declaration of array class starts with a keyword array followed by specifying the type and size of array and then the name of the identifier. Example: array arr; arr is an array class of type in with size = 10.