Abdullah_A_lAsif_001

check ap

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