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
[76d036]
:
/
test
/ expr-brackets.c
Maximize
Restore
History
Download this file
8 lines (6 with data), 69 Bytes
1
2
3
4
5
6
void
func
()
{
a
=
b
*
(
c
+
d
)
*
e
;
a
=
b
*
(
++
c
);
a
=
b
*
++
c
;
}