Which of the following are valid array declaration?

Options
- int num(5)
- float avg[5]
- double[5] marks
- counter int[5]


CORRECT ANSWER : float avg[5]

Discussion Board
C++ - Array

To declare an array, first specify the type of the elements and the number of elements required.
Syntax: datatype arrayname [arraysize];
Example: float avg[5];

Prajakta Pandit 01-30-2017 01:05 AM

Write your comments

 
   
 
 

Enter the code shown above:
 
(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement