What value does the char.ToLower function return if the argument is already lowercase?

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter14: Exception Handling
Section: Chapter Questions
Problem 10SA
icon
Related questions
Question

What value does the char.ToLower function return if the argument is
already lowercase?

Expert Solution
Step 1

char.ToLower(ch):

  • The method "ToLower" of char class takes argument of type char.
  • The argument "ch" is a character.
  • The method returns the lowercase equivalent of "ch".
  • The general syntax of the method ToLower of char type is as follows:

                 char.ToLower (‘A’);

Step 2

Case 1:

The statement that calls the char.ToLower method, passes a char variable named uppercase as an argument, and stores the result in a char variable named lowercase is as follows:

//declare a variable uppercase of type char

char uppercase ='A';

//convert uppercase char to lowercase char

char lowercase = char.ToLower (uppercase);

For the above code snippet, the lowercase variable will store value as ‘a’.

steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Functions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning