The second scanf() function is not taking any input. How can I take another input? And why is this happening?
#include<stdio.h>
int main()
{
char u, v;
printf("Enter lowercase character :");
scanf("%c",&u);
printf("Uppercase is : %c\n",u-32);
printf("Enter uppercase character :");
scanf("%c",&v);
printf("Lowercase is : %c\n", v+32);
}