Thread
:
how to avoid to printing the value of charecter in C?
View Single Post
shabbir
Go4Expert Founder
11Feb2008,18:18
Code:
char c; scanf( "%c", &c ); if( isalpha(c) ) printf( "You entered a letter of the alphabet\n" );