In C, the placement of elements of a two dimensional array is
Select one:
a. Diagonal wise
b. Bottom to top wise
c. Column wise
d. Row wise
Answers
Answer:
b. bottom to top wise
hope this helps you
Answer:
The correct answer is option d. Row wise.
Explanation:
From the above question,
In C programming language, a two-dimensional array is described as an array of arrays. The factors of a two-dimensional array are saved in reminiscence in a row-major order, which skill that the factors of every row are saved collectively in memory. This approves for environment friendly get entry to to the factors of the array, as consecutive factors in a row are saved contiguously in memory.
Therefore, in C, the placement of factors of a two-dimensional array is row-wise. That is, the factors of every row are saved collectively in memory, observed by means of the factors of the subsequent row, and so on.
The correct answer is option d. Row wise.
For more such related questions : https://brainly.in/question/912980
#SPJ2