C Programming resources.
Thelemech
Victoria Icrontian
I have just started teaching myself C and currently reading/studying C Primer Plus 3rd Edition (The Waite Group) along with Teach Yourself C Programming in 21 Days. Also downloaded Borland C/C++ Compiler. I was wondering if any one could recommend any other books, websites, any other resources and maybe some good open source compilers.
0
Comments
ADA, Perl, Python, C and C++ are the languages I have been looking into so far. What are the future friendly languages?
C++/C# and Java are the 'in' languages I believe.
Oh and thanks for the responses my friends
Regarding benefits of one language over another, it really depends on what you are doing. If you want to work with hardware, device drivers, or native api's from hardware vendors you, will benefit most from C. If you want to write system code, daemons, or services you will likely use a C/C++ blend. If you are writing mostly user applications heavy in UI code it will be more pure C++ or C#.
I've been writing code at the device driver and system level for almost 10 years and have done everything in C/C++; however, C# is great for getting UI stuff running quickly and writing test code. As Thrax, JB, and mmonnin said, there are plenty of reasons to use C++ and C#. Just pick the right language for what you to do. Personally, I think it is easier to go from C to C++ than the converse - just my opinion.
Good luck!
Props to hypermood at writing code at the system driver level!!