Isdigit

#include "stdio.h"
char is_digit(int x)
{
    if(x>='0' && x<='9')
    return (1);
    else
    return (0);
}
int main (void)
{
    int a;
    printf("Enter a number:\n");
    scanf("%c", &a);
    printf("%d\n", is_digit(a));
    system("pause");
    return 0;
}

0 comments:

Post a Comment