Practice
Compete
Contribute
Learn
Log In
Sign Up
Quiz 76
Anonymous
1,649 views
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include
<cstdio>
void
foo
(
int
v1
,
int
v2
,
int
v3
,
int
v4
)
{
printf
(
"
%d
%d
%d
%d\n
"
,
v1
,
v2
,
v3
,
v4
)
;
}
int
main
(
)
{
int
lut
[
]
=
{
1
,
2
,
3
,
4
}
;
int
idx
=
0
;
foo
(
lut
[
idx
++
]
,
lut
[
idx
++
]
,
lut
[
idx
++
]
,
lut
[
idx
++
])
;
return
0
;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Run
0
0
Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.
Go to tech.io
Suggested playgrounds
Another User Conversion
By
Unnamed contributor
1,794
0
0
Uniqueness Check
By
Unnamed contributor
1,608
0
0
Ceaser Cipher
By
Adriaan
3,892
24
8
Recueil d'exercices pour apprendre Python au lycée
By
M_C
290.3K
149
42
Join the CodinGame community on Discord to chat about puzzle contributions, challenges, streams, blog articles - all that good stuff!
JOIN US ON DISCORD
Online Participants
Keyboard Shortcuts:
?
Show / hide this help menu
×