Code & Deploy
Code
Models
Repos
Sign in
@leroysheep
/
rag-system
rag-system
/
t
/
t4051
/
appended1.c
Code
Commits
Pulls
CI/CD
82,027
next
bisect
jch
maint
master
next
seen
test
todo
c
15 lines
224 Bytes
Copy permalink
Copy
Raw
1
2
int
appended
(
void
)
// Begin of first part
3
{
4
int
i
;
5
char
*
s
=
"a string"
;
6
7
printf
(
"%s
\n
"
,
s
);
8
9
for
(
i
=
99
;
10
i
>=
0
;
11
i
--
)
{
12
printf
(
"%d bottles of beer on the wall
\n
"
,
i
);
13
}
14
15
printf
(
"End of first part
\n
"
);