Code Snippets C

#include
int main() {
char ch;
ch = 'r';
while ( ch <= 'w' )
printf ( "%c", ch++ );
printf ( "\n" );
}