I was just curious to know if there is way to create a new variable with a new name every time a loop is executed.
For example:
#include <iostream>
int main()
{
for (int x = 1 ; x<=5 ; x++)
int a_x;
return 0;
}
5 new variables should be created with names a_1
, a_2
, ..., a_5
The above code just shows what I am looking for and is not the answer.
Is this possible without using arrays?