How about some paradox
The Weird and The Wonderful
6
Posts
4
Posters
0
Views
1
Watching
-
int i = 0; int m = 1; while ( i < m){ Print i Print m i = i + 1; m = i; }
nananaanananan code man!
-
This code can be simplified with
m = i++;
:sigh:
No memory stick has been harmed during establishment of this signature.
-
This code can be simplified with
m = i++;
:sigh:
No memory stick has been harmed during establishment of this signature.
Unless my remaining braincell is taking the day off, shouldn't that be
m = ++i;
? Cheers, Peter
Software rusts. Simon Stephenson, ca 1994. So does this signature. me, 2012
-
Unless my remaining braincell is taking the day off, shouldn't that be
m = ++i;
? Cheers, Peter
Software rusts. Simon Stephenson, ca 1994. So does this signature. me, 2012