in the following c code:
char name[20];
int a;
int b;
for(i=0;i<10;i++)
{
printf("\nEnter name, a & b: ");
scanf("%s %d %d",name,&a,&b);
}
does scanf read in the '\n', entered at the end of scanf() in 1st iteration, for the 2nd iteration inputs?