Archived
What does the following code display?
int main()
{
int ranking = 15;
int* pRanking = &ranking;
printf(“%d”,*pRanking);
return 0;
}
0
Community EvaluationsNo one has reviewed this question yet, be the first!