Hi,
I have a function which returns a pointer to array with data:float * EZ_MATH::EZ_GE_BY_ME() { ... }
Now, how can I access this data? This doesnt work:
float * memA = temp_m.EZ_MATH::EZ_GE_BY_ME();ofstream output("out_file", ios::out);output << memA[0] <<endl;output << memA[1] <<endl;
Help!