#include<conio.h>
#include<iostream.h>
void main()
{
clrscr();
char s1,s2;
cout<<"Enter The Uppercase charecter\n";
cin>>s1;
s2=s1+32;
cout<<"\nLower case letter of" <<s1<<" is "<<s2;
getch();
}
#include<iostream.h>
void main()
{
clrscr();
char s1,s2;
cout<<"Enter The Uppercase charecter\n";
cin>>s1;
s2=s1+32;
cout<<"\nLower case letter of" <<s1<<" is "<<s2;
getch();
}
No comments:
Post a Comment