You are given a null-terminated string containing alphabets, digits, symbols, and spaces. Your task is to:
Avoid using standard library functions like isalpha(), isdigit().
Example-1
Input: "C99_Firmware!"
Output:
Alphabets = 9
Digits = 2
Symbols = 2
Example-2
Input: "123@hello#"
Output:
Alphabets = 5
Digits = 3
Symbols = 2
Input
C99_Firmware!
Expected Output
Alphabets = 9 Digits = 2 Symbols = 2