adplus-dvertising
frame-decoration

Question

Which of the following statements are correct about an array?

1. The array int num[26]; can store 26 elements.
2. The expression num[1] designates the very first element in the array.
3. It is necessary to initialize the array at the time of declaration.
4. The declaration num[SIZE] is allowed if SIZE is a macro.

a.

1

b.

1, 4

c.

2, 3

d.

2, 4

Answer: (b).1, 4

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the following statements are correct about an array? 1. The array int num[26]; can store 26 elements. 2. The expression num[1] designates the very first element in the...

Similar Questions

Discover Related MCQs

Q. int a[5] = {1,2,3}

What is the value of a[4]?

Q. The function sprintf() works like printf(), but operates on ..........

Q. Choose the best answer.
Prior to using a pointer variable

Q. The address operator &, cannot act on

Q. The statement int **a;

Q. The operator > and < are meaningful when used with pointers, if

Q. The declaration
int (*p) [5];
means

Q. Comment on the following?
const int *ptr;

Q. A function 'p' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as

Q. Which of the following is the correct way of declaring a float pointer:

Q. What is the base data type of a pointer variable by which the memory would be allocated to it?

Q. Set of consecutive memory locations is called as ________.

Q. Array can be considered as set of elements stored in consecutive memory locations but having __________.

Q. In Array, There is one to one correspondence between set of ________ and set of values.

Q. Smallest element of an array is called as _______.

Q. If we have declared an array described below -
int arr[6];
then which of the following array element is considered as last array element ?

Q. Array which is having ____ dimensions is called as 2-D array.

Q. What is maximum dimension that array can have in c programming ?

Q. Array with last element 'n' will always have array size equal to _______.

Q. Array is an example of _______ type memory allocation.