This is a C# Program to convert upper case to lower case.
Problem Description
This C# Program Converts Upper Case to Lower Case.
Problem Solution
Here the String is obtained in uppercase which is converted to lowercase using tolower().
Program/Source Code
Here is source code of the C# Program to Convert Upper case to Lower Case. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.
/* * C# Program to Convert Upper case to Lower Case */ using System; public class Program { public static void Main() { string str; Console.WriteLine("Enter the String in Uppercase :"); str = Console.ReadLine(); Console.WriteLine("String in LowerCase : {0}", str.ToLower()); Console.ReadLine(); } }
Program Explanation
In this C# program, we are reading the string in uppercase using ‘str’ variable. Here the string is obtained in uppercase which is converted to lowercase using tolower(). Print the lower case value of the string.
Sanfoundry Certification Contest of the Month is Live. 100+ Subjects. Participate Now!
advertisement
advertisement
Runtime Test Cases
Enter the String in Uppercase : SANFOUNDRY String in Lowercase :sanfoundry
Sanfoundry Global Education & Learning Series – 1000 C# Programs.
If you wish to look at all C# Programming examples, go to 1000 C# Programs.
Next Steps:
- Get Free Certificate of Merit in C# Programming
- Participate in C# Programming Certification Contest
- Become a Top Ranker in C# Programming
- Take C# Programming Tests
- Chapterwise Practice Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
- Chapterwise Mock Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
Related Posts:
- Buy MCA Books
- Buy Computer Science Books
- Buy C# Books
- Apply for C# Internship
- Apply for Computer Science Internship