You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
printf("Index %d of Array %d > %d\n",j,i,hahaha[i][j]);
if (j == 2)
{
printf("\n");
}
}
}
printf("%p\n", &hahaha);
printf("%p\n", srank); //memory address of the age variable
printf("%d\n", *srank); //the value inside of that memory address. this equals to => *&age. while &age contains the memory address of itself, *&age contains the value inside of that memory address. this is called "dereferencing".
// srank == &*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*srank < this returns true, hopefully you get the idea