How to convert the content of buffer into lower case character.

Answers were Sorted based on User's Feedback



How to convert the content of buffer into lower case character...

Answer / krishna bs

If you wnat to write your own logic to convert then...

ascii value for Upparcase letter starts from 65 (A) to 90(Z)
ascii value for Lowercase leter starts from 97 (a) to 122(z)

difference is 32, i.e, 97-65 = 32

the same difference carries for all the characters.
Ex: for character 'C'
99 - 67 = 32

You can add 32 to the ascii value for upparcase letter to
convert lowercase (you have to put condition to check the
uppar case letter).

Is This Answer Correct ?    3 Yes 0 No

How to convert the content of buffer into lower case character...

Answer / sahadev tarei

::CharLowerBuff()

Is This Answer Correct ?    1 Yes 0 No

How to convert the content of buffer into lower case character...

Answer / rainz

std::tolower () shall work ,while iterating through the buffer text(character by character).

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More MFC Interview Questions

What is userdefine Messages in MFC?

1 Answers   HCL,


How can i change the color of a dropdowncombobox elements

2 Answers  


What is the difference between hinsrtance and hprevinstance in WinMain function?

3 Answers  


List out the basic features of MFC.

4 Answers   Mphasis,


1)set the Title for The File DialogBox, in MFC?

1 Answers  






If application hangs while SendMessage is waiting for the result, how you handle it?

2 Answers  


Will there be any difference in the image buffer size if it is loaded in from CString to LPTSTR using GetBuffer()? lptstr = string.GetBuffer(0);

2 Answers  


Which MFC function is used to display output?

9 Answers   TCS,


What is primitive and non-primitive application?

2 Answers   HCL,


how many types of messages are their

4 Answers   E Logic, TCS,


How many types of dialog box are their

10 Answers   Honeywell,


What is the difference between regular dlls and extended dlls?

2 Answers  


Categories