shithub: scc

ref: 3c737d518c2ca2f85ded09025cae9a900902288f
dir: /tests/0008-dowhilestmt.c/

View raw version

int
main()
{
	int x;

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