#include <stdio.h> #include <ctype.h> int main() { char n = 20; if (isdigit(n)) { printf("Digit\n"); } else { printf("Not Digit\n"); } return 0; }
Not Digit
Previous Question Next Question
Your comments will be displayed only after manual approval.