i am supposed to call this operator with an expression like p<<ar , and the array from the object "ar" must be saved in this pointer..However,in the main function,this doesn't seem to happen,and the programm crashes whenever i try to print a value from the array p,but in the function everything is ok (i can print a value from p)..please help..thank you.
in the function, p is a copy of the variable in main. when you change p, the variable in main doesn't change. float**& should work.
by the way, http://www.cplusplus.com/forum/articles/17108/
Thank you..it seems to work now(it doesn't crash but it shows "rubish",some logical fault that i'll find)..And thanks for the topic about MD..It'll help me a lot,since our teacher never actually explained as in detail all about arrays...Thanks again :)