View Single Post
  #6  
Old 05-14-2007, 05:08 PM
CORed CORed is offline
Senior Member
 
Join Date: Sep 2002
Posts: 4,798
Default Re: Learning to Program

[ QUOTE ]
[ QUOTE ]
Don't most programmers kind of hate C++ or am I wrong?

[/ QUOTE ]
It's a love-hate kind of thing. More hate than love, I guess.

[/ QUOTE ]

I learned C first (well actually I had a college course in Fortran using punch cards (yes, I'm an old fart), but never did any serious programming in it. While there is something to be said for learning an easier language first, if you can program in C, you can program in anything. If you want something to run fast, write it in C or C++. If you want to get the program written fast, use Java, Perl, C#, etc. Compiled executables will always outperform interpreted or run-time compiled languages, so C and C++ are the workhorses for device drivers, OS kernels, word processors, spread sheets, etc., where shaving every nanosecond counts, whereas languages like Jave, C# and perl are used for smaller things like web applications or middleware, where maximizing programmer productivity is more important.
Reply With Quote