Apparently this gives an infinite loop:
[code]#include <iostream>
using namespace std;
int main() {
int i = 0;
for ( ; ; ) {
cout << i++;
cout << "n";
}
return 0;
}[/code]
Discover more from Henry Poon's Blog
Subscribe to get the latest posts sent to your email.