Answer Posted / vikesh
int *a[5] means that there are 5 integer pointers[which
store adresess of only integers] whose adresses are in
continous locations and each pointer name is accesed by *a
[0],*a[1]....*a[4].for example
a[0]=n means a[0] points to n, a[1]=p means a[1] points to
p.[where n and p are integers]Let the adress of n and p be
some 625 and 254 respectively. then a[0] will hold 625
whose adress is(assume)1000 and a[1]will hold 254 whose
adress is 1002.similarly the a[2] will hold some adress(if
u make it to point) with its adress 1004 and a[3] will hold
some others adress with its adress 1006 and a[4] will hold
some others adress with its adress 1008.
| Is This Answer Correct ? | 26 Yes | 1 No |
Post New Answer View All Answers
What are header files in c?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
hai iam working in sap sd module for one year and working in lumax ind ltd in desp department but my problem is i have done m.b.a in hr/marketing and working sap sd there is any combination it. can you give right solution of my problem. and what can i do?
write an algorithm to display a square matrix.
How does selection sort work in c?
What is nested structure in c?
find out largest elemant of diagonalmatrix
How many levels of pointers can you have?
what are the 10 different models of writing an addition program in C language?
List out few of the applications that make use of Multilinked Structures?
What is the use of putchar function?
How can I remove the leading spaces from a string?
What is a shell structure examples?
What is the difference between exit() and _exit() function in c?