提供された名前に従って新しい整数型変数を作成できる関数をC++で作成しようとしています
例えば
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";
}