Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #72.8K
~11.2K People Reached
About Me

IT student

Interests
Playing the guitar, reading, riding the bicycle
Favorite Forums
Favorite Tags
c++ x 2

2 Posted Topics

Member Avatar for Dave Sinkula

Sep 10th 2005 09:17 PM sunnypalsingh There's another veru nice book Thinking In C++,2nd Edition by Bruce Eckel 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.

Member Avatar for shahidali6
11
10K
Member Avatar for meabed

Two guidelines from [i]Thinking in C++ [/i]by Bruce Eckel: [list=1] [*]Avoid the preprocessor. Always use [b]const[/b] for value substitution and [b]inline[/b]s for macros. [*]Avoid global variables. Always strive to put data inside classes. Global functions are more likely to occur naturally than global variables, although you may later discover that …

Member Avatar for Lisa1110
3
1K

The End.