This website requires JavaScript.
Explore
Help
Sign In
HSH
/
programmieren-3-c
Watch
1
Star
0
Fork
You've already forked programmieren-3-c
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
master
programmieren-3-c
/
v4.2
/
qinit.c
6 lines
113 B
C
Raw
Permalink
Blame
History
void
qinit
(
int
arr
[
]
,
int
len
)
{
for
(
int
i
=
0
;
i
<
len
;
i
+
+
)
{
arr
[
i
]
=
(
i
+
1
)
*
(
i
+
1
)
;
}
}
Reference in New Issue
View Git Blame
Copy Permalink