Write a program to accept your name and display it in both lowercase and uppercase letters using functions
Answers
Answered by
1
Answer:
Program to display all alphabets from A to Z in uppercase and lowercase both. Using ASCII values: ASCII value of uppercase alphabets – 65 to 90. ASCII value of lowercase alphabets – 97 to 122. C++ filter_none. // C++ program to print alphabets. Using alphabets directly i.e. For lowercase alphabets – Run a loop from a
Similar questions