- Joined
- Aug 8, 2004
- Messages
- 3,892
- Reaction score
- 20
I have a few very large books on C++ programming. But I'm in fact a hell of a lot better in PHP, which I learned trough looking at other peoples code...Nick said:I would suggest buying an actual book.. its how I learned I read the whole thing.. it was more of a story.![]()
In my experience, books are usefull for the really basic stuff or for finding extremely advanced code-techniques. Most of the middle stuff you'll have to teach yourself.
Ofcourse, it helps if you have a certain notice of how to write code, especially efficient code. Usually I can do in 1 for loop what others need 3 loops for. Its a certain syntax you have to know in your mind. Aftar you acquire that, you can code in almost any major language out there. For example, I aced both JAVA as well as C++ coding without going to a single lecture or even studying for the examns. Never programmed in any of those languages before either. I did know PHP however, as well as VB, JavaScript, etc. Once you know the basic concepts of object oriented programming its mostly a matter of finding which syntax is used in which language.
I mean, wether you use write('Hello world!); or fprintf('Hello world!'); or even STD::COUT<<'Hello World!'; is just a matter of knowing whats the correct name for that basic syntax thats used everywhere. Much so for all basic codeexamples. And once you master those, the more difficult coding comes easy

