How to create dynamic variables as follows
for(...)
{
Run This( "int var" + i = i;);
}
to be able to create and initialize var1 = 1; var2 = 2;
I was able to do this in a couple of scientific programming languages without any problem..
Help please..
for(...)
{
Run This( "int var" + i = i;);
}
to be able to create and initialize var1 = 1; var2 = 2;
I was able to do this in a couple of scientific programming languages without any problem..
Help please..
Comment