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