Oct 20, 2006 07:43
So I've decided that I need to learn some C. I'm not exactly sure where I should start. C++ seems to be the way to go since it is inherently object oriented, but I really have no idea where to start with compilers. I'd prefer something free. If any of you have any recommendations, I'm listening.
Leave a comment
Comments 9
gcc -o myprog myprog.c
Reply
When I was in CCC I did my homework in gcc.
Reply
Reply
I'd start with c, since c++ is c with some added OOP on top. Most C++ books will start you in c anyway with the last few chapters reading "Branching from C to C++ and OOP" or something similar.
Reply
It's object oriented and a _lot_ easier to learn, yet it supports some extremely advanced programming paradigms in much more obvious ways than C++. In fact, many of the people that work with it are regarded as amongst the world's best. (You can leave me out of that august group, incidentally.) You can do almost anything in it that you can do in C and you can do it in many fewer lines of code, and those lines will be easier to maintain if you need to. It works of most of the world's operating systems. It's free.
It's Python.
Reply
Reply
Reply
Reply
Leave a comment