Mikey-

> int myVar = ++someOtherVar

To be fair about this, there's really no reason to start off by placing this 
all in one line just because you can:

int myVar;
++someOtherVar; // or someOtherVar = someOtherVar + 1;
myVar = someOtherVar;

does the same thing and is (somewhat) easier for newbies to grasp.

-- 
 Mark Wieder
 [EMAIL PROTECTED]



_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to