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;
}
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!