(Choose 1 answer)
What is the output when the sample code below is executed and a user enters 1 2 3 4 5 from the console?
int a.b.c.k;
printf("Enter numbers: ");
k=scanf("%d%d%d",&a,&b,&c);
printf("k = %d",k);
A. Nothing (no output)
B. Compiler error
C. 3
D. 5
Exit 17