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