Make a c++ program that will ask the user to input an alphabet character then will display the rest of the character taking user's input as its input value
Ex. Enter a small letter: (ie.r)
Output: r,s,t,u,v,w,x,y,z
Ex. Enter a small letter: (ie.c)
Output: c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z
this is all i have:
#include <iostream.h>
int main ()
{
char letter;
cout<< "\n"<<"enter a small letter: ";