write a program that displays both the lower case


Write a program that displays both the lower case and upper case alphabetical letters using the following

Format

Lowercase        Uppercase

a                        A

b                        B

c                        C

...                      ...

...                      ...

z                        Z

#include 
using namespace std;
int main  (  )

{

char letter1, letter2;

cout<<"Lowcase\tUppercase"<

for(letter1  = 'a', letter2  = 'A'; letter1<='z',
    letter2<='Z'; letter1++, letter2++)

cout<

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: write a program that displays both the lower case
Reference No:- TGS0158498

Expected delivery within 24 Hours