Identifying Character Types
Q.Write a C++ program to accept a character. Print whether the character is an alphabet, digit, or a special character. Display appropriate messages.
#include <iostream>
using namespace std;
int main()
{
char ch;
cout<<" Enter a character :...
shahalpp.hashnode.dev2 min read