Horje
c check if char is number Code Example
c check if char is number
char c = 'a'; // or whatever

if (isalpha(c)) {
    puts("it's a letter");
} else if (isdigit(c)) {
    puts("it's a digit");
} else {
    puts("something else?");
}




C

Related
how to malloc for matrix in c Code Example how to malloc for matrix in c Code Example
The Batman Code Example The Batman Code Example
params in main function in C Code Example params in main function in C Code Example
chat Code Example chat Code Example
javascript string Code Example javascript string Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7