summaryrefslogtreecommitdiffstatshomepage
path: root/examples/natmod/features2/prod.c
blob: 7791dcad1d214f51b2fc7f7a1e8a482b36d6c15e (plain) (blame)
1
2
3
4
5
6
7
8
9
#include "prod.h"

float prod_array(int n, float *ar) {
    float ans = 1;
    for (int i = 0; i < n; ++i) {
        ans *= ar[i];
    }
    return ans;
}