Advertisement
shohag11

Untitled

Oct 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1.  
  2. #include<stdio.h>
  3. int main()
  4. {
  5. char x;
  6. printf("polton numbers\n");
  7. scanf("%c",&x);
  8. if(x>='a'&&x<='z'||x>='A'&&x<='Z')
  9. printf("this number is alphabet");
  10. else
  11. printf("this number is not alphabet");
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement