In scanf space and \n is delimiter for the character i/p. The below program accepts only two input. I could not understand why does it accept two input.Please explain about this behaviour.
char a,b,c;
scanf("%c%c%c",&a,&b,&c);
printf("%c%c%c",a,b,c);
return 0;
chars.