//Find the entered value is alphabet or not using if-else
#include<stdio.h>
int main()
{
char value;
printf("Enter value=");
scanf("%c",&value);

if((value>='a'&&value<='z')||(value>='A'&& value<='Z'))
printf("\nIts an alphabet");
else
printf("\nNot an alphabet");
return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: