View Single Post
  #4 (permalink)  
Old 06-24-2006, 12:20 AM
elihayun's Avatar
elihayun elihayun is offline
Senior Member
 
Join Date: Jan 2006
Posts: 379
elihayun is on a distinguished road
Quote:
Originally Posted by intelligent_14
thanks Elihayun, but this function return only one number (a[shift]) i wants it to return all of "a[]" array not a[shift]
U can use it this way


for (int i=0; i<100; i++)
{
double d = MyFunc(i);
<do what u need to do with the return value>
}
Reply With Quote