C/C++
nceg.asc
Associated article: Numerical Extensions to C
Tags: C/C++
_NUMERIC EXTENSIONS TO C_
by Robert Jervis
Example 1:
(a)
void f3(int n, float *restrict a, float *b, float *c) {
int i;
for (i = 0; i < n; i++)
a[i] = b[i] + c[i];
}
(b)
float x[100];
float *c;
void ...


