Find the output of the following code in C language assuming other parameters are correct.
void main( )
{
int a; int b;
scanf ("%2d %5d", &a, &b);
printf ("a = %d and b=%d.",a,b);
}
/* input by the user is a=12345 and b = 67 during program execution*/
Reveal answer
Fill a bubble to check yourself