I'm trying to make a function in C++ that can make a new integer type variable according to the name that has been provided
for eg
void my_variable(char name)
{
int "something here" = 1; // i am figuring out what to write
// there so that it makes a variable from that character that i have sent
cout << "something here";
}