why is my array assigning new values to the memory locations of a previous array c++ code example
Example: select elements from array C++
double X[100];
for (int i = 0; i < 98; i++) {
X[i+1] = r*X[i]*(1.0-X[i]);
myfile << X[i] << endl;
}
double X[100];
for (int i = 0; i < 98; i++) {
X[i+1] = r*X[i]*(1.0-X[i]);
myfile << X[i] << endl;
}