Saved Bookmarks
| 1. |
Explain any two character based functions. |
|
Answer» tolower(): It converts the capital alphabet character to lower case. For example, tolower(‘A’) output: a toupper ( ): It converts the lower case alphabet character to upper case. For example, toupper(‘a’) output: A |
|