Question from the Language C - Fundamentals test

Archived

What does the second printf() display?

    int main()
    {
        int numSecu;
        printf(“What is your social security number?\n”);
        scanf(“%d”,numSecu);
        int* pSecu = &numSecu;
        printf(“%d”,pSecu);
        return 0;
}
Author: KahinaStatus: Archived(New question!)Question not yet passed
0
Community EvaluationsNo one has reviewed this question yet, be the first!