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]
2010-01-12
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]
© 2024 Henry Poon's Blog
Theme by Anders Norén