11. WAP to change the CAPS of characters i.e. if input character is in small the output will be in capital.

Posted: September 23, 2012 in CSE Sem1, ECE Sem1, Lab 10, Lab 10, Lab 11A, Lab 11A, MECH Sem1
    #include<stdio.h>
    int main()
    {
    char ch;
    printf("Enter a character");
    scanf("%c",&ch);
    if((ch>=65)&&(ch<=122))
		{
    ch=ch-32;
    printf("The upper case character corresponding is=%c\n",ch);
}
	else
		printf("Enter Invalid");
    return 0;
    }

Leave a comment