You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gcc-explorer/examples/max_array.cpp

6 lines
123 B
C++

void maxArray(double* x, double* y) {
for (auto i = 0; i < 65536; i++) {
if (y[i] > x[i]) x[i] = y[i];
}
}