I have not done any c++ programming yet but was wondering how you use arrays in a for loop for example the code below
int i;
double D_Nath(11),D(11),er(11);
for( i=0;i < 11; i++)
{
D_Nath(i)=PI*D(i)/er(1)*.76554;
}
how dod you get this to work correctly.
Thanks for any help with this.