Advertisements
Advertisements
प्रश्न
Consider the following two-dimensional array and answer the questions given below:
int x[ ][] = {{4,3,2}, {7,8,2}, {8,3,10}, {1,2,9}};
- What is the order of the array?
- What is the value of x [0] [0] + x [2] [2]?
संक्षेप में उत्तर
उत्तर
- Order of the array 4 × 3, i.e. 4 rows and 3 columns
-
x[0][0] = 4, x[2][2] = 10 So, the result is 14
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
The number of bytes occupied by a character array of four rows and three columns is ______.
Consider the following program segment and answer the questions given below:
int x[][]={{2,4,5,6}, {5,7,8,1}, {34,2,10,9}};
- What is the position of 34?
- What is the result of x[2][3] + x[1][2]?
Define a class to accept values into a 4 × 4 array and find and display the sum of each row.
Example:
A[][]={1,2,3,4),{5,6,7,8},{1,3,5,7},{2,5,3,1}}
Output:
sum of row 1=10 (1+2+3+4)
sum of row 2=26 (5+6+7+8)
sum of row 3=16 (1+3+5+7)
sum of row 4=11 (2+5+3+1)