This program is about checking and print the capital or small alphabets using Conditional operators in C
#include <stdio.h> int main() { char c; printf("\nEnter The Character : "); scanf("%c",&c); c>=97&&c<=122?printf("%c is Small Letter",c):c>=65&&c<=127?printf("%c is Captial Letter",c):printf("Others"); return 0; }To download raw file Click Here
Enter The Character : a a is Small Letter
Learn All in Tamil © Designed & Developed By Tutor Joes