Data Type C

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