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