C++ aka "C With Classes" was what I was started on.
It's a perennial topic of rumination a friend and I go over.
What is the essential complexity of programming, and what language syntax provides the least additional complexity?
There is a certain complexity to programming, in the abstract. Creating a given process, altering it to meet the needs of the given system, plugging it into another process. That is the essential complexity. But, this complexity has to fit into the complexity of a specific language, with its(usually somewhat irregular and crufty) syntax, semantics, libraries, and compiler(neglecting any OS variants like making students use Unix).
My experience teaching suggests that syntax is a huge hurdle for students, and problem solving is an even bigger hurdle. Students who can't make that first syntactical jump are prohibited for being able to do the second jump, due to the nature of actually needing to implement a solution to a problem. (who'da thunk!)
I argue for Scheme as an introduction to programming, due to the minimal syntactical complexity.
For a more pragmatic approach, Java is good, because it is a fairly regular language with good compiler/runtime errors.
For a more "let's get stuff done" approach, C# is good, because it easily interfaces with Windows(although I would not prefer to teach C# and Forms to newbies in 3 months).
For a introduction to the machine, C(not C++) is good.
I would suggest that curricula that don't incorporate C/C++ as the standard language need to have a strong architectural course in the lower division to teach them the machine(Make them write in ASM!)