shithub: scc

ref: f49e6a2567d28ca03446691fe3f249940f9d734c
dir: /tests/execute/0008-dowhilestmt.c/

View raw version

int
main()
{
	int x;

	x = 50;
	do 
		x = x - 1;
	while(x);
	return x;
}