0
I have a vector XC[i]
where Gero with the code below:
for(i = 0;i<N_Volumes;i++){
double XC[i];
XC[i] = (xC0+=delta_x)-1.0;
printf ("XC[%d]= %f\n", i, XC[i])};
I want to take these values from XC[i]
and use in function double Sp= XC[i]*XC[i]
How can I do that?
Start by correcting the syntax of your commands.
– anonimo