0
Can you help me please i can't answer
😫😔
3 Respostas
0
Can you explain the question once again?
0
#include<stdio.h>
int main()
{
double array[10] = {1,2,3,4,5,6,7,8,9,10};
printf("%p \n",array);
printf("%p \n",array+4);
printf("%lf \n",*array);
printf("%lf \n",*(array+4));
return 0;
}
pavan
0
array stores the zeroth element address if you want addres u simply use array.if u want to access the element then use *array .for any element u want to access use *(array+i) or array[I] where I is from 0 to 9 .if u want to access any address then use array+i . Please mention if u have any further doubts