You are given a null-terminated input string.
Your task is to:
Do not use standard library functions like isdigit() or isalpha().
Use only ASCII value checks.
Example-1
Input: "123456"
Output: NUMERIC
Example-2
Input: "firmwareC"
Output: ALPHABETIC
Example-3
Input: "C99"
Output: MIXED
Example-4
Input: "Hello!"
Output: MIXED
Example-5
Input: ""
Output: MIXED (empty string is considered mixed)
Input
123456
Expected Output
NUMERIC