we can't read two characters simultaniously in the following program.why?
#include<stdio.h>
int main()
{
char a,b;
scanf("&#37;c%c",&a,&b);
printf("%c%c",a,b);
}