venki
Answered On : Jun 22nd, 2006
ans none of these
Login to rate this answer.
T.Raghavendra
Answered On : Nov 24th, 2006
array of integer pointers
Login to rate this answer.
a. array of pointers
Login to rate this answer.
LRT
Answered On : Aug 4th, 2011
Array Of Pointers
Login to rate this answer.
mrinmoy
Answered On : Aug 29th, 2011
A. array of pointer which has 5 int values.
Login to rate this answer.
nitin
Answered On : Aug 29th, 2011
pointer to array
Login to rate this answer.
saranya
Answered On : Aug 30th, 2011
it is array of pointers
Login to rate this answer.
aradhana tripathi
Answered On : Sep 1st, 2011
It is an array of pointers which can store 5 integer type values indexing start from 0 to 4.
Code
{ int *n[5],a,b,c,d,e;
n[0]=&a;
n[1]=&b;
n[2]=&c;
n[3]=dc;
n[4]=&e;
for(int i=0;i>=4;i++)
{
printf("value of %d is %d",i,n[i]);
}
Login to rate this answer.
Reason:
We know that * indicates a pointer and a[5] denotes a array of size 5.
*a[5] it means that there are 5 memory locations storing the 5 different addresses. So answer is array of pointers.
Login to rate this answer.
VANDANA TYAGI
Answered On : Sep 11th, 2011
(b) Pointer to an Array
Login to rate this answer.
priya kalra
Answered On : Oct 10th, 2011
array of pointers.....
Login to rate this answer.
rakesh sharma
Answered On : Jan 29th, 2012
(A) ARRAY OF POINTERS
Login to rate this answer.
array of pointers
Login to rate this answer.