Code & Deploy
Code
Models
Repos
Sign in
@matheusbsbs
/
matheus-bagliano
matheus-bagliano
/
t
/
t7615
/
ours.c
Code
Commits
Pulls
CI/CD
81,295
bisect
bisect
jch
maint
master
next
seen
test
todo
c
17 lines
218 Bytes
Copy permalink
Copy
Raw
1
int
g
(
size_t
u
)
2
{
3
while
(
u
<
30
)
4
{
5
u
++
;
6
}
7
return
u
;
8
}
9
10
int
h
(
int
x
,
int
y
,
int
z
)
11
{
12
if
(
z
==
0
)
13
{
14
return
x
;
15
}
16
return
y
;
17
}