shithub: scc

ref: 5be74533f06c1f6ba0f8728fb8aa43b812776d73
dir: /tests/0008-dowhilestmt.c/

View raw version

int
main()
{
	int x;

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