'0'&&chprintf("it is a number");elseprintf("it is not a number"); }">
#include
int main()
{
char ch;
scanf("%c",&ch);
if(ch>'0'&&ch<'9')
printf("it is a number");
else
printf("it is not a number"); }