Write a C++ program using only one loop that will display the ASCII Code and the corresponding
character in a table for each of the following: CAPITAL LETTERS, lowercase letters and the numbers
from 0-9. The table should have six (6) columns: ASCII CODE for CAPITAL LETTERS, CAPITAL
LETTERS, ASCII CODE for lowercase letters, lowercase letters, ASCII CODE for the numbers from
0-9, and ASCII CODE for the numbers from 0-9. Hint: Remember how characters are stored in memory
Validate your input using loops.

In C++