Mike
2009-07-05 21:32:52 UTC
#include "list.h"
int posTween(double x[],int m, int n, int len) {
int count = 0;
n=MIN(n,len-1);
while (m <= n) {
if (x[m] > 0) count++;
m++;
}
return count;
}
/*any help would be appreciated*/. Thank you.