Advertisements
Advertisements
Question
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]?
One Line Answer
Solution
- x[2][0]
- 17 (9+8)
shaalaa.com
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
The number of bytes occupied by a character array of four rows and three columns is ______.
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]?
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)