mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 12:54:00 -05:00
6 lines
122 B
C++
6 lines
122 B
C++
void maxArray(double* x, double* y) {
|
|
for (int i = 0; i < 65536; i++) {
|
|
if (y[i] > x[i]) x[i] = y[i];
|
|
}
|
|
}
|