Answer (Choose 1 answer)
A. Accepts any characters excepts lower case letters (in the range between 'a' and 'z') upper case letters (in the range between 'A' and 'Z') and digits (in the range '0' to '9')
B. Accepts only lower case letters (in the range between 'a' and 'z') upper case letters (in the range between 'A' and 'Z')and digits (in the range '0' to '9')
C. Accepts only spaces, lower case letters (in the range between 'a' and 'z') upper case letters (in the range between 'A' and 'Z') and digits (in the range '0' to '9')
char name[31];scanf("%[a-zA-Z0-9]", name);
Which is the correct statement about the above code?