
06-24-2006, 12:20 AM
|
 |
Senior Member
|
|
Join Date: Jan 2006
Posts: 379
|
|
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>
}
|