• 0

c++ Book on pointers


Question

I hate them I hate them I hate them, BUT I need to learn them. I was wondering what books you fellow programmers would recommend. I also would like to know if there are any c++ books that deal with pointers with classes (user defined objects) in mind.

Thanks. :D

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

i love pointers....:) i used problem solving with c++ by savitch.

int x = 10;

int* p = &x;

delete[] x; //whoops :-P

best way to understand them is to draw arrows and whatnot ;)

Link to comment
Share on other sites

  • 0
i love pointers....:) i used problem solving with c++ by savitch.

int x = 10;

int* p = &x;

delete[] x; //whoops :-P

best way to understand them is to draw arrows and whatnot ;)

Heh, same post count :), well -1 -- and you have my middle name darnet

Link to comment
Share on other sites

  • 0

Yes pointers are hard, but it really is important to understand them if you really want to master C++, i?m studying c++ with c++ from the ground up, covers a lot of pointers starting from the pointer chapter, if you cant get the book i?ll suggest you have a look at the functions tutorials at www.functiox.com/cpp great site with c++ tutorials, all the tutorial together more than +500 pages long, compiled it once in .pd:p:p

Link to comment
Share on other sites

  • 0
I used Data Structures and other Objects Using C++ by Main and Savitch.

Main and Savitch RULE!

I really hope that's a good book for it costs nearly 100 bucks at amazon!

Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.