I have a simple function:
DoRead(double *writeArray){
//GblOutData is an array of length 80, where each element is 1
writeArray=GblOutData;
//prints out 1
printf("%f",writeArray[5]);
return 0;
}
what happens when I call DoRead():
double data[80];
DoRead(data);
printf("%f",data[5]);
//prints out 0.000000 instead of 1
I can't figure out why this is happening. Any ideas?
data[5]to 1? FYI, you're not changing the parameter outside the function when you dowriteArray=GblOutData;, you're just changing the pointer inside the function and actually just printingGblOutData[5]. – Seth Carnegie Nov 4 '11 at 18:16