A program that read any upper case character & display in lower case in C.

#include<stdio.h>
#include<conio.h>

void main()
{
    char n;
    clrscr();
    printf("Enter any upper case character : ");
    scanf("%c",&n);
    printf("Same lower case character is : ");
    printf("%c",n+32);
    getch();
}



////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........