Language Basics C

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