#include <iostream>
int main()
{
char start;
char alphabet[26];
std::cout << "Where do you want to start a, A etc ? ";
std::cin >> start;
for (int i = 0; i < 26; i++)
{
alphabet[i] = i + start;
std::cout << alphabet[i];
}
}
thanks kemort works great. Idk what that ascii dude was talking about but I spent like an hour looking through ancient nasa documents trying to decode the secrets of ascii.