6.0k views
5 votes
Write a C program to input a character, then check if the input

character is digit, letter, or other character.

1 Answer

4 votes

Answer:

// CPP program to find type of input character

#include <iostream>

using namespace std;

void charCheck(char input_char)

// CHECKING FOR ALPHABET

if ((input_char >= 65 && input_char <= 90)

// Driver Code

int main()

{

char input_char = '$';

charCheck(input_char);

return 0;

}

Step-by-step explanation:

// CPP program to find type of input character

#include <iostream>

using namespace std;

void charCheck(char input_char)

// Driver Code

int main()

{

char input_char = '$';

charCheck(input_char);

return 0;

}

User IndigoChild
by
7.1k points