Code Snippets C

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