Friday, January 2, 2009

Learnings- Lorebeth

December 29-January 2, 2009

Christmas is finished but it's a Happy 100x New year guys.....................

Lets welcome the 2009 which is the year of the OX with a big S.M.I.L.E.

Opps! Vacation will be finish and say "hello" to class.

I just read this one:

Auto-increment and Auto-decrement Operators


- instead of using i = i+1 use equivalent statement i++
- similarly j = j-1 can be written as j--
- similarly a = a+b can be written as a += b
- similarly c = c-d can be written as c -= d
- similar compact forms for * / and % exist
- this results in shorter (and often faster) code

No comments: