-
C or C++ book?
I have a couple of questions. I think it would be a good idea if i bought a book about c or c++ so I could start programming possibly in the PSP. Should I buy a C or C++ book? how do I get the examples in the books to work for the PSP? I did some of the psp tutorials but i want to buy a book for programming, to get some good experience. have any suggestions for books that I would find at my local barnes and noble? I saw a book called learn C++ in 24 hours that looks pretty good...
-
you can download previously published books at http://www.freeprogrammingresources.com/cppbooks.html
or just google "c++ book"
-
-
-
I started with C++ Without Fear. It was coded by a top coder at Microsoft and he explains things very well. I recommend it!
-
yea i was thinking of buying a book myself. do they really sell them at barnes and nobles???........ i gotta check that out.......... maybe pic up a copy of the lua programming book as well
-
-
PM me for some good links ;)
-
you know what is pissing me off? I am trying to make helloworld with my new C++ book but when I compile it it just exits right out of it before I can even see it. here is the code:
#include <iostream>
int main()
{
std::cout << "aloaldafgd\n";
return 0;
}
-
Is that the whole script?