10 lines
134 B
C
10 lines
134 B
C
|
#include <stdio.h>
|
||
|
#include <ctype.h>
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
if( isalnum( getchar() ) ) {
|
||
|
printf( "is alpha-numeric\n" );
|
||
|
}
|
||
|
}
|