|
>>
|
No. 8588
In my not so humble opinion, programming is not for you. C/C++ is a fundamental programming language and you'll go nowhere in the practical world without it. Now, however, if you got motivation, I would recommend not any particular book or web page. Take a more self-involved interest in the subject. A great place to start in my more humble opinion is cplusplus.com because it has a complete reference of the C++ language as well as the entire Standard Template Library, and the String library, and every C library and of course the IOStream library. It's your every-tool, complete with examples. That's how you look shit up. Next, grab some simple source code for a program like "cat" or "echo" (look up "gnu cat" and "gnu echo" and you'll be all set), and look at it. You'll see patterns, take note and look anything you don't understand up. Next, cannibalize the code into something different, like make it add an extra letter, or omit specific things. From there, write your own stuff like "hello world". Some people think this approach is backwards, but I think it gives you a starting point.
Once you conquer C/C++, you'll realize like most other programmers that not only is it the most Flexible, Speedy and Extensible language around (remember Qt stuff is just C++ with a specialized preprocessed). It is used by professional game developers, operating system programmers (GNU/Linux, Windows, etc. are all largely C/C++ code), application developers, and so on. If you can manage it, you can try other neat things like Objective-C (a C++ work-alike) which is/was (dunno anymore) popular in the MAC/NeXT worlds.
If you learn all the facets of C++, you can conquer any language with ease... except assembly. That's a whole different ballgame. I would recommend it if you feel you got the balls.
|