c++ while true loop

C++
while (true) { // you can also put 1 or true: while (1)
	//do stuff
}
Source

Also in C++: