If i have an address (ex. 0x00419a94) how can i know to what address points? Can anyone tell me?
void main()
{
char [] abc={a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z};
int pointer=&abc; //this is a pointer to abc it'll contain the adress of abc
somemadeupFunctionThatTakesaPointer(*pointer);
//well if you use pointer as a pointer you'll acess abc
*pointer=c;
//this line of code would write a c at the start of abc
}