Question from the Language C - Fundamentals test

What does the second printf() display?

Hard

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: Published(Update)Question passed 67 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!