C++ Program to Convert Uppercase to Lowercase

Advertisements

Prev Tutorial Next Tutorial

C++ Program to Convert Uppercase to Lowercase

To convert a character from uppercase to lowercase in C++ programming, you have to ask to the user to enter a character in uppercase to convert it into lowercase and display the equivalent character in lowercase.

To change uppercase character into lowercase character, just add 32 in character in uppercase to convert it into lowercase. Since ASCII value of A is 65 and ASCII value of a is 97.

So, 65+32 = 97 = a = equivalent value of A in lowercase i.e., a.

To understand below example, you have must knowledge of following C++ programming topics; Cout in C++ and Cin in C++

Convert Uppercase to Lowercase Conversion in C++

#include<iostream.h>
#include<conio.h>

void main()
{
	clrscr();
	char ch;
	cout<<"Enter a Character in Uppercase: ";
	cin>>ch;
	ch=ch+32;
	cout<<"Character in Lowercase: "<<ch;
	getch();
}

Output

Enter a Character in Uppercase: B
Character in Lowercase: b
c++ program to find factrors on any number
Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements