Question from the Language C - Fundamentals test

Archived

What does the following code display?

int main()
    {
        int ranking = 15;
        int* pRanking = &ranking;
        printf(“%d”,*pRanking);
        return 0;
    }
Author: KahinaStatus: Archived(New question!)Question not yet passed
0
Community EvaluationsNo one has reviewed this question yet, be the first!