Forum: C++ Dec 29th, 2005 |
| Replies: 42 Views: 42,427 |
Forum: C++ Dec 29th, 2005 |
| Replies: 42 Views: 42,427 Re: C++ Performance Tips Two guidelines from Thinking in C++ by Bruce Eckel:
Avoid the preprocessor. Always use const for value substitution and inlines for macros.
Avoid global variables. Always strive to put data... |
Forum: C++ Dec 29th, 2005 |
| Replies: 54 Views: 57,075 Re: C++ Books I totally agree with sunnypalsingh. I am reading this book now and its really a great deal. You can find this book for free at:
http://www.pythoncriticalmass.com/
It's in 2 volumes. |