aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/IfElse.c
blob: 8c87ce7db3d1839c8b3c24c9bc45a28498201b7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
int main()
{
	int x = 87;
	if( 2 > 1)
	{
		x = 45;
	}
	else
	{
		x = 92;
	}

	return x;
}