Which of the following is the correct declaration for an array ?
Aint m(5)
Bint [5]m
Cm[5] int
Dint m[5]
Aint m(5)
Bint [5]m
Cm[5] int
Dint m[5]
Related Questions:
What is the value of sum after the execution of the following code?
int sum = 0;
for (int i = -5; i<=;i++)
{
if (!i) break;
sum += i;
}