Character status enter is taken as character

//status of character//
#include <stdio.h>
#include<conio.h>
main()
{

char c ;
status:
printf(“enter a character\n”);
scanf ("%c",&c);
if(c>=‘A’&&c<=‘Z’)
printf(" u entered a uppercase\n");
else if(c>=‘a’&&c<=‘z’)
printf(" u entered a lowercase\n");
else if(c>=‘0’&&c<=‘9’)
printf(“u entered a digit\n”);
else
{
printf(“u entered a special symbol\n”);
}
goto status;
}

the above is the code …
HELP ME it takes the enter which i put to execute as a character(special symbol)