Samiul_Islam_Abir

6

Jun 20th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.30 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     char ch;
  5.     printf("Enter a character:");
  6.     scanf("%c",&ch);
  7.     if((ch>='a'&&ch<='z')||(ch>='A'&&ch<='Z'))
  8.     {
  9.         printf("character is a alphabet");
  10.     }
  11.     else
  12.     {
  13.         printf("character is not a alphabet");
  14.     }
  15.     return 0;
  16.  
  17. }
Add Comment
Please, Sign In to add comment