Console C

#include 
int main(void)
{
  char ch;
  ch = getchar();
  if(ch < 'h') 
      printf("character is less than h");
  return 0;
}