5 + 3
Attention: The following graph snippets are for the latest revision in the git repository. The last stable release may require slightly different graphs.
5 + 3
x*x - 2
print_int(7);
print_int(4);
x.z
goto a;
a:
if (1 == 0) {
return 4;
} else {
return 7;
}
int x;
if (7 > 4) {
x = 9;
} else {
x = 3;
}
return x;
int i = 0;
do {
i = i + 1;
} while (i < 100);
void empty(void)
{
}
int add(int x, int y)
{
return x + y;
}