How can I find the index of an item in a multidimensional array?
Find The Index Of An Item In C Language Using Multidimensional Array
In C programming language allowed multidimensional array. The general form of the multidimensional array is-
Type Arr[Size1][Size2]……..[SizeN];
It is the declaration of N size array. The simplest form of the multidimensional array is the two dimensional array. I will show you how to declare 2 dimensional array.
Type ArrName [a][b];
- Accessing/Find two dimensional array Element:-
An element in a two dimensional array is accessed by using row index and column index of the array. For example:-
very good..
ReplyDelete