Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
28219f9e1ee67e348f88d71d87f9a1c56c5e238d
/
.
/
examples
/
c
/
Max_array.c
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
];
}
}