LOG IN
Help
Search
Browse
Talk
Home
Tools
c2iec
Code
c2iec
transpiler to convert ansii c-code to structured text
Brought to you by:
ingo
Unlicense
Home
Code
Tickets
Activity
Browse Commits
Fork
Merge Requests
0
Branches
master
[a3652e]
:
/
test
/ stmt-while.c
Maximize
Restore
History
Download this file
9 lines (7 with data), 52 Bytes
1
2
3
4
5
6
7
void
func
()
{
while
(
x
<
10
)
{
x
=
x
/
2
;
}
}