C Array Questions and Answers
Practice ModeShowing 10 of 108 questions
Q61
In case of a strictly lower triangular array which of the following is true.
Answer: Option C
Q62
The total numberr of of non-zero elements in a lower triangular arrays with n rows is
Answer: Option C
Q63
Which of the following declarations for a two dimentional integer type array called matrix for 3 rows and 5 columns ?
Answer: Option D
Q64
Find the output
void main ( )
{
int a[2, 3] ={ (2, 3), (4, 5), (6, 7)};
printf("%d", a[0]);
}
Answer: Option A
Q65
Find the output
void main ( )
{
int arr[2]={(1, 2), (2, 3)};
printf("%d", sizeof (arr+1));
}
Answer: Option D
Q66
which is the wrong one about array from the following ?
Answer: Option C
Q67
Which of the following array initialization is not possible ?
Answer: Option A
Q68
What will be the adjacent element of a [0][1] in the array a[2][2].
Answer: Option B
Q69
Array is which kind of data type.
Answer: Option C
Q70
Choose the wrong one out of the following.
Answer: Option A