index
:
c-stuff
master
Wide assortment of random c snippets, tests and tools which don't deserve their own repository.
Tomasz Kramkowski <tomasz@kramkow.ski>
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
blocks.c
blob: baf31f6f6ca33baa0a23b77b823c035c2ca07c80 (
plain
)
1
2
3
4
5
int
main
(
void
)
{
int
i
=
({
static
int
i
=
3
;
i
+
5
;
});
return
i
;
}