#include<stdio.h>
int main()
{
char c;
scanf( "%c", &c );
if( isalpha(c) )
printf( "You entered the alphanumeric character %c\n", c );
fflush(stdin);
getchar();
return 0;
}
int main()
{
char c;
scanf( "%c", &c );
if( isalpha(c) )
printf( "You entered the alphanumeric character %c\n", c );
fflush(stdin);
getchar();
return 0;
}
0 comments:
Post a Comment