int *a[5] refers to
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / ravi saini
Array of pointers...Points the integer values
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / vignesh1988i
it refers to the array of addresses or array of pointers
which can hold a 5 element address of integer type only.....
it allocates 5*2=10 bytes of space.... this 2 dosen't refers
that it is an integer so 2 bytes is multiplied.... since any
data type address is always holds 2 bytes of space in most
of the compilers used,..........
thank u
| Is This Answer Correct ? | 6 Yes | 1 No |
declearation of one dimensional pointer array having 6
elements like a[0],a[1],a[2],a[3],a[4],a[5].
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / shivukumar hiremath
In general array
of pointers..but
we can
say..content of a
of 5(i.e *a[5] we
read and its a
type of int so
that . .the memory
allocated is 4byte
of int and
multiplied with 5
20bytes . .starting
address 4bytes for
pointer variable
a..
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / fazlur rahaman naik
5th element in an array of integer pointers.
| Is This Answer Correct ? | 4 Yes | 10 No |
How can a program be made to print the line number where an error occurs?
Write a C program to fill a rectangle using window scrolling
why do we use pointer instead directly acessing the data?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
why i join syntel?
23 Answers ABC, Syntel, TCS,
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
how we can make 3d venturing graphics on outer interface
to find the closest pair
why integer range between -327680to+32767
what is the similarities between. system call and library function?
What is the difference between malloc calloc and realloc in c?