if the address of a[1,1] and a[2,1] are 1000 and 1010
respectively and each occupies 2 bytes then the array has
been stored in what order?
Answers were Sorted based on User's Feedback
Answer / ....................
it's order is a[5,5] because it takes 2 bytes for every
elements i.e a[1,1]=1000 a[1,2]=1002 a[1,3]=1004
a[1,4]=1006 a[1,5]=1008 a[2,1]=1010..............
| Is This Answer Correct ? | 49 Yes | 8 No |
Answer / parul_kul
The order of array cannot be defined as we dont know the
max size of the array. however we can calculate the column
subscript of the array as follows-
a[1,1] = 1000, a[1,2] = 1002, a[1,3] = 1004, a[1,4] =
1006, a[1,5] = 1008.
After this the 2nd row will start as a[2,1] = 1010, and so
on.
So we can define the no. of columns, i.e. 5, in this array
but not the no. of rows.
| Is This Answer Correct ? | 14 Yes | 2 No |
Answer / vignesh1988i
always the 2D array will be stored in column order only , in
C.... so only ,
it is a must that we must specify the column subscript
however we miss the row subscript.....
thank u
| Is This Answer Correct ? | 7 Yes | 4 No |
write c program without semicolon
11 Answers MindTech, TCS, Wipro,
Explain how can I make sure that my program is the only one accessing a file?
Explain what standard functions are available to manipulate strings?
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā %d\nā,sum); } what is the difference between a=10 and a=010??
how to print "hai" in c?
How do I copy files?
What are run-time errors?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
What are the types of pointers?
which is the best antivirus and how to update it