#include <stdlib.h>
#include <stdio.h>

//What is the output?
int main(int argc, char* argv[])
{
	int count=0;
	do
	{
		count--; // this causes an infinite loop
		printf("%d\n", count);
	}while(count < 5);
	
	system("pause");
}