22) Consider the statement
int val[2] [4] = { 1, 2, 3, 4, 5, 6, 7, 8} ;
4 will be the value of
Answer is:
val[0 ][ 3]
Related C Programming MCQ with Answers
Answer is:
All of the above
Explanation:
The size of an one-dimensional array need not be specified
* when initialization is a part of definition
* when it is a declaration
* when it is a formal parameter and an actual argument
Answer is:
the first (row) subscript may be left empty
Answer is: