#include <stdio.h>#include <ctype.h> int main() { int n = 'B'; 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.