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