Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
f80be0a4f7cf7270aeaa8c9d534b004c79c1afed
/
.
/
examples
/
max_array.cpp
blob: 6b6b1560791aa6219198a5df492717b9b5e96aee [
file
] [
log
] [
blame
] [
raw
]
void
maxArray
(
double
*
x
,
double
*
y
)
{
for
(
auto
i
=
0
;
i
<
65536
;
i
++)
{
if
(
y
[
i
]
>
x
[
i
])
x
[
i
]
=
y
[
i
];
}
}