vote up 16 vote down star
3

I realize this is a subject of hot debate, but I'm interested in opinions that relate to my specific situation.

I want to learn the basics and fundamentals of programming, so I'm already taking a college course in general programming concepts. It isn't covering a specific language, but it's giving me a solid foundation that I can build upon when I move on to a class that teaches a specific language.

My two options for a specific language are Java and C because those are the two languages taught at the college I want to take classes from.

What I want to do is learn a complex language so that I can apply that knowledge to languages that I use, or will eventually use, in my current job building web pages: XHTML, CSS, JavaScript, PHP, XML, ActionScript.

I'm not necessariy interested in becoming a Java developer or a C developer in the immediate future, but I do have aspirations of developing web applications and iPod/iPhone applications.

So, basically, I'm looking for answers to these questions and the reasoning behind them:

  • Do I take the introductory course in Java first, and then take the intro course in C, or

  • Do I take C first and then take Java?

  • Is there any reason not to take them concurrently?

  • Should I skip C altogether as Java covers everything I need to know?

EDIT: Thanks everyone for your thoughtful and insightful responses.

flag

30 Answers

vote up 20 vote down check

I personally believe that C is the better language to start with. Even if you never use the low-level bits of C, you'll force yourself to think in a particular way to get things accomplished.

If you take a good enough C/C++ for 1 or 2 semesters I think you'll become a much better programmer later. When I was learning programming I opted for the more advanced C++ classes at my school, and I found that I had a much bigger advantage than people who took only basic programming courses before.

High-level concepts come more easily for me and languages are easier for me to understand.

I definitely think you're better off taking Java after a C/C++ course.

link|flag
I've coded 99.99% Java since 1995, but I would still recommend starting with C. I interview too many who don't understand how computers work, which is something you're more likely to learn in C. I love Java, and highly recommend that you learn too it so you can port your apps to Android. – sylvarking Sep 27 '08 at 17:44
Same as erickson. I have been mainly coding in Java over the last decade, but I reckon learning C first helped me immensely. – toolkit Sep 27 '08 at 18:51
vote up 12 vote down

Summary

  • Programming is a passion for you: Do learn C, and as soon as possible, move to another, more complex languages (C++, Java, C#).

  • Programming will be your job, but you'd rather do anything else than play with compilers at home: Do learn Java. Some low level understanding will be missing, but hey, no one needs knowing how a car really works to use it as part of his job.

Why C would be a good/bad idea?

C is very low level, but not too much. You have variables, functions, a stack and a heap. You'll have pointers, dynamic allocation and, some C glitches are interesting to know if you want to have some edge over other developers.

But C breeds bad habits. For one, it breeds arrogance. Nothing is so much nerve-wrenching and at the some time amusing than a C developer trying to tell you how much his language is better than yours, because it is faster (usually a lie), and better (lie, again). With C, (as with C++), standard libraries are so poor it is an eternal source of frustration (of course, there are a lot of libraries around the web, but then, they're out of the standard...). Despite what is promised elsewhere, C won't give you all the basics about programation. Its object-oriented features are non-existent, and if you stick too much to it, you'll fossilize your mind and everything you'll learn will be criticized about how you could do it in C, instead of what this new way of thinking to make your programming experience richer.

Conclusion: Do C only to learn from it. Do not keep yourself constrained to C. Either move to C++, as C++ can be a low level as C, and can be almost as high level as C# or Java. Or go even further, and move to C# or Java.

Why Java would be a good/bad idea?

Despite what some people would tell you, despite its higher language status, Java (or C#, for they are of the same language family) is quite efficient, and now are able to reach efficiency level of C/C++ in code execution. It is object oriented, and its libraries are so complete it'll just blow your head off (don't be intimidated, though). For the average developer, it is more "cross platform" than C or C++ because its standard library is present on any Java Runtime. So, if you do a C GUI program on Linux, and want to see it executed on Windows, you'll have to learn some tricks (I did not have the patience). For Java, just copy your jar files on any computer with a JVM, et voila.

Now, Java is no silver bullet. Sometimes, it can just be slow, and some processing will have to be done in C or C++ through JNI bindings. And if Java will teach a lot about statically typed object oriented programming, it will do little to teach you about low level programming, pointers, memory, etc.. It's difficult to explain, but, as a C/C++ programmer, I like to see a Java or C# program and instinctively know what processing will be slow, and what will be fast. It's pleasing to start my first brush of C# with ".NET/C# optimization" and understand a digest easily everything explained there. This is the kind of feeling someone who started with Java, C# or (gods help them) Visual Basic can't ever start to perceive.

Conclusion: By going straight to Java, you'll avoid some chores from C. The problem is that some knowledge lost among this low-level language will perhaps be missing when you need them.

So what?

For now, from what I perceive around me, the mainstream programming is done using C++, Java and C#, C++ losing its edge as easier programming languages reaches its speed (JIT is just marvelous). So, by the time you'll be searching a job, perhaps C++ will be outdated (or not... We'll see if C++0x will keep its promises).

My take: If you're the kind of people who like programming, and would do it on their own time, for pleasure, then do C, and then move to C++, Java and C#. If for you, programming is just a job, and the idea of trying this new feature or new language is kinda alien for you, move to the practical, and learn Java and stick to it.

link|flag
vote up 8 vote down

It's too bad your college doesn't offer C++, as that gives you everything C would teach you plus the Object Oriented stuff you'll learn with Java.

Java will almost certainly be more applicable to your web development future.

C teaches you a lot of important low level stuff.

The question is: How important is that low level stuff to a web developer?

Being primarily a web developer myself, I don't think it's that important. Everything you really need to know you'll learn with Java. So although I hesitate to say it, go with Java first then C if you really want to get a deeper understanding of programming in general.

link|flag
Thanks, actually, C++ is offered, but not as an introductory class. I would need to take Java before I could take C++. – GR1000 Sep 27 '08 at 16:23
I agree, Java first, but I disagree about C++. C++ is too hard; it scares students away. The ones left are mostly OK with unnecessary complexity. I like programmers who value simple, elegant design. So, I think it selects the wrong people. – Alan Hensel Sep 27 '08 at 16:28
Hey, my first language was C++ and I turned out ok! (I think...) – Telos Sep 27 '08 at 17:01
Just because the design of the language is not simple doesn't mean you can't write simple, clear programs in C++... – Greg Rogers Sep 27 '08 at 17:01
Just to be clear, neither Telos nor Greg are contradicting my comment. – Alan Hensel Sep 27 '08 at 19:03
show 1 more comment
vote up 7 vote down

Joel Spolsky has this to say on the subject. C is the Lingua Franca of computer science. If you want to know how and why your Java program behaves as it does, knowledge of C is a must. (What is your average JVM written in?)

If you have some programming experience, learn C first, then Java. If you don't, do it the other way around.

link|flag
I disagree with this. If you have no programming experience, either Java will probably put you off the idea for life, or, if it doesn't, you're probably better off doing something else. – Brent.Longborough Sep 27 '08 at 19:23
In that case, starting with C would not have helped. – JesperE Sep 27 '08 at 19:49
I wish we had a way to vote up comments... If there was, I would definitely have voted Brent's. "Either Java will probably put you off the idea for life, or, if it doesn't, you're probably better off doing something else" So succintly put... :) – sundar Sep 28 '08 at 10:39
vote up 7 vote down

I definitely wouldn't take both language intros concurrently. If it's worth your time to study a language at all, it's worth your undivided attention to focus on it exclusively and learn it really well. If you take both at the same time you're just going to get a generalized understanding of their basics but not be particularly adept at either.

If you have aspirations of developing iPod/iPhone applications you're definitely going to want to learn C. Objective-C, the native language in which iPod/iPhone applications are implemented, is a strict superset of C. Having a strong foundation in C will help you immeasurably.

link|flag
I disagree as a CS student I am taking C and Java, have a internship in PHP and am learning Ruby on the side. But maybe it depends on the individual. – Mark Lubin Oct 19 '08 at 22:27
vote up 4 vote down

I would say to start with C, or something else that isn't object oriented. This gives you a good base, for just thinking about algorithms, without getting involved with all the complexities that objects bring into the picture. Then you could move on to something like Java, or C# to explore Object oriented programming. You don't have to stick with one language for too long. A month or two should be enough to master most of the syntax. After a month or so of learning, you can turn to something else, and continue to learn something new while you are still exploring the intricacies of the other. If you really want to start out small. Just go with Basic for like 2 weeks, and understand the really simple stuff like doing loops, using conditionals, and calling subroutines.

link|flag
You can write java programs that have a single class with a single method, so you don't have to worry about all those tricky OO problems. – Joeri Sebrechts Sep 27 '08 at 15:54
"you can" is not the same as "you will be taught that way". – gbjbaanb Sep 27 '08 at 16:04
I agree, with gbjbannb. Although you can use just one class, if you're going to to that, you might as well not use Java. Also, if you do this, you are somewhat setting yourself up to relearn Java once you want to go object oriented. Doing things the "wrong way" the first time is a bad way to learn. – Kibbee Sep 27 '08 at 16:14
I think postponing OO is a terrible idea. OO is at the core of most modern software, and the more you train your mind in procedural design, the harder the paradigm shift to OO will be. – slim Sep 27 '08 at 16:38
vote up 4 vote down

I recommend that you start with Java. Beginning programmers are typically tripped up, quite badly in fact, by pointers in the C programming language. (Pointers can be a tricky subject in any language that supports them, but they are especially difficult to understand in C. I had already master pointers in the language Pascal before I learned C, but I still had a devil of a time with them.)

If you begin with C, count on spending a great deal of your time not learning the fundamentals of programming, but instead trying to figure out why arrays are just like pointers, why arrays are not just like pointers and why your program is crashing seemingly at random. Java is a richer, more complex language, it requires you to learn many more concepts than does C, but you will spend far less time struggling with the fundamentals in that language than you will in C.

Java also has the advantage of being an object-oriented language. You will need to understand object-oriented programming to work with most modern languages, including JavaScript and ActionScript.

If your career is limited to building web pages, you will probably never need the additional concepts you can pick up by then learning C, although understanding C will certainly give you a better of understanding of "how computers work," since it is a much lower-level language.

link|flag
vote up 4 vote down

"learn the basics and fundamentals of programming" pretty much implies learning C. Pointers are a very important concept, fundamental to any work done at low level. All the higher level languages use them under the hood - pointer to pointer to functions that return pointers to etc.

Maybe about 99% of all programmers are using Java, .NET, Python and more abstract or specialized languages, where pointers just don't come up. If "references" come up, those are really pointers wearing intellectual costuming. In Java, every object is really a reference, so you're really doing a lot with pointers.

Still, for the most part you could probably ignore the idea of pointers - except that when performance matters, or memory usage needs to be tightened, or in trying to resolve an unusually tricky tough bug, or just to reduce the sense of mystery of what's going on under the hood - in order to an extraordinarily good programmer - you gotta understand pointers and related concepts that matter to OOP, such as virtual method tables. If you have two containers each holding the same item - is it really the same item, does one container point to the item in the other, or do they both point to that one - questions like these are easily understood with pointers and related concepts as part of one's "mental furniture" to arrange as needed. Without an understanding of the infrastructure, many of the rules for handling objects, ownership thereof, memory managament may seem arbitrary.

Even at the end-user applications level, if you ever do debugging of any kind, to understand what exactly is a stack trace, segment faults and to glance at register contents and actually have a useful thought follow, it is good to understand things at the C level, and maybe also assembly, but that's going outside the scope of the original question.

The advantage of Java or C may be in getting quicker to OOP concepts, organizing large programs into modules, and getting quicker to a practical working app, but the disadvantage is reliance on huge libraries that are practically "black boxes" you wire into the app and don't know what's going on inside.

Anyone with any interest in the infrastructure of computing - operating systems, device drivers, memory management, threading, and interpreters for higher level languages and unix shells and more - nearly all of that is written in C.

I've dwelt on pointers, but also it's good to know how integers, floats, strings, and other fundamental data types are stored and manipulated. C lets one get close to those kinds of details.

Although, i admit I may be biased, since i was the kind of kid who took my toys apart, and put them back together. Also, my first language was assembly. Not everyone craves to know what's inside, how it works. YMMV

link|flag
99% seems a little high for me. There are still a lot of C++ and C programers out there. – bruceatk Sep 27 '08 at 21:18
vote up 3 vote down

I'm inclined to say to take C first, as it is as close to Assembly as you can get without actually being Assembly. Assembly, in turn, is close enough to the Turing model of computation, which is the real science of Computer Science.

Java provides a fair amount of abstractions on top of C/C++. I think you'd be well-served to understand the details that Java is hiding from you so you don't mis-use the language.

Of course, if all you want to get up-to-speed for your web development job as quick as possible, then skip straight to Java.

link|flag
Thanks, yes I do want to get up-to-speed as quickly as possible, but I'd also like to learn Assembly. That's my dilemma. :) – GR1000 Sep 27 '08 at 16:27
vote up 3 vote down

For something useful in relation to other high-level languages and web programming, learn Java.

If you want to understand more about how computers work, learn C.

If you already know PHP and ActionScript reasonably well, then Java is not going to teach you all that many fundamental programming concepts that you haven't encountered already. But there will still be some new things (for example strong typing).

C does seem to be generally regarded as "harder" than Java, and may have a steeper learning curve, so to an extent it depends how smart you are. But if the only course prerequisite is basics of computing, and as long as the professor isn't a sadist, the course is presumably designed to be manageable to people like you. I mean, your school is there to teach you stuff you don't know. You wouldn't not take Ancient Greek 101 just because you didn't already know Ancient Greek. Consult your faculty for advice on prerequisites, and don't be scared that the C course is "hard-core" unless they tell you to be.

The discipline and detail required to get C code even vaguely working is quite different from HTML and CSS, where interpreters are designed to be very forgiving. The C compiler is designed to forbid certain illegal things completely, but to emit code that crashes mysteriously, or produces the wrong output, or sets your machine on fire* when you do other illegal things. There's not much scope for guesswork.

Java is also much stricter than the stuff you already know, but it's not so fiddly as C and it won't set your machine on fire. So to learn how to write working code, establish that it's correct, debug it when it isn't, and that sort of thing, then Java is probably the better bet. In C it's easy to make obscure, boring, mistakes that don't really educate you about anything other than the C language itself and to be more careful next time, and there's other stuff you want to learn.

(*) This is a common joke among C programmers. If you take the C course you will soon learn about "undefined behaviour". When the C standard says that your program results in undefined behaviour, the compiler is "allowed" to emit code that does absolutely anything, including catch fire. Or cause demonic monkeys to fly out of the screen and bite your face. Very few compilers actually do either of these things. But you never know.

link|flag
However, using Java would teach you what a good API looks like, as opposed to PHP. – Kibbee Sep 27 '08 at 15:41
Java's API is good? ;) – Telos Sep 27 '08 at 15:45
There is "knowing" and there is "knowing". Being able to write a script in PHP doesn't mean he has actually learned how to program. A formal introductory java course would teach about data structures and algorithms. – Joeri Sebrechts Sep 27 '08 at 15:49
Sure, but I said "if". Maybe I should say it louder. – Steve Jessop Sep 27 '08 at 15:55
That's exactly right. Basically, I can write a simple script in PHP, but I really need a formal introductory course to learn how computers really work. – GR1000 Sep 27 '08 at 15:56
show 1 more comment
vote up 2 vote down

If you don't wanna be a programmer, and you don't have the background knowledge, then I suggest starting with Java.

If you have greater plans, then start with C.

I wouldn't take them concurrently without prior knowledge, you might be confused.

link|flag
vote up 2 vote down

Both of these languages are of different programming types and will broaden your horizon and help in future. Directly jumping to Java will narrow your horizon and you wont appreciate the concepts of Pointers and power of C. Plus if you are more geared towards mobile applications than learning C/C++ will be plus. I would definately take C as the first course and than jump on to Java. Java is an object oriented programming language so the mindshift to an Object oriented language will be a bit tough initially but you will get over it. I think every programmer must add these types of languages in his skillset to broaden his horizon

  1. Functional programming lanugage like LISP
  2. Object oriented language like Java
  3. Scripting language like Python/Javascript
link|flag
vote up 2 vote down

I have taught a variety of introductory and advanced courses, and here are my two cents, all under the assumption that you are already taking the all-important principles of CS course (data structures, algorithms, complexity, etc.)

The choice between C (or C++) and Java will ultimately depends on what you intend to do with them, and if you intend to work in the industry also on the companies that you are targeting.

If you are going to work on higher level things (GUIs, web based software, large scale interactive systems, etc.) Java (or C#) may be your better choice because it does hide all the details of the underlying computer system from you. You are "sandboxed" within the virtual machine, exceptions are always thrown, memory is managed for you, compilation and distribution is easier, etc. Java is a good entry point for all the "sandboxed" languages out there, including, for example, Flash programming.

If you are going to work on low-level things where you may want to interface with the hardware (e.g., device drivers, OS extensions, embedded systems) or just manage things efficiently and manually, you would want to focus on C and C++. Both languages in my opinion are more difficult to learn and use than Java because they not only require you to manage your own memory but also to master the art of the pointer. In some cases, it may be a headache.

In my humble opinion every "real" computer scientist and top programmer needs to understand and be capable of practicing the entire from low-level assembly language and hardware-specific optimizations to higher-level languages. In practice, if you're just seking to be able to do stuff, weigh carefully what it is that you want to do and pick accordingly.

link|flag
vote up 1 vote down

They will teach you different things, so if you have the time and the bandwidth of taking both you can. It would be a little bit confusing for me but your mileage may vary.

link|flag
vote up 1 vote down

I would take both intro courses concurrently. No single language covers everything you need to know. As a professional programmer, you'll need to be able to switch between different programming languages (especially as a web developer). There is no reason not to start developing these skills now.

link|flag
vote up 1 vote down

OO is a difficult thing to get. Most "OO" programmers don't really get it. So I suggest trying to start with an OO attitude and have time to mull it over. It's not very productive to get into the mindset of worrying over the little details that computers can be made sort out anyway.

link|flag
vote up 1 vote down

C has a large number of icky features that make C programs a pain to write a debug. C has ambiguous semantics and endless memory-management problems. C is so bad people write books about how to make C acceptable for common use.

[Example, what does a[i++]= i; do? Now try to find a reference to back up your opinion. If you actually compiled it, try compiling with different optimization switches.]

However, C is also the foundation for the GNU/Linux OS, and consequently, one of the two most widely used programming languages. Java's the other.

Java lacks the ickiest features of C. The folks that invented Java learned their lessons from the problems C has. The semantics of Java are crisply defined. Memory management is part of the JVM, not a headache you have to cope with.

Learn Java first.

If you ever need C, you'll have a foundation of experience in good software, so you'll understand the issues with C. If you start with C, you'll learn some trivia that you have to unlearn when you try to pick up Java.

link|flag
why would you need to write a[i++] = i; ? There are more simple and understandable ways to do that. – djeidot Sep 27 '08 at 16:27
The point is not to write it. The point is that the language specifies no semantics for it. The statement is just one example of a C construct that cannot have any well-defined meaning. – S.Lott Sep 27 '08 at 16:30
The point is that There#s More Than One Way To Do It, and several of those ways are wrong. And even quite experienced people can choose the wrong way without knowing it. Also true of Java, but less often. – slim Sep 27 '08 at 16:41
Technically the language specifies undefined semantics for [i++] = i, not just unspecified. Most compilers will yell at you anyways so its not a big deal. – Greg Rogers Sep 27 '08 at 16:52
I'm not sure "most" compilers will. I think some are smarter about this than others. But there are too many things which are syntactically correct but have vague or indefined semantics. That's just creepy. – S.Lott Sep 27 '08 at 17:03
show 4 more comments
vote up 1 vote down

I'd also vote for C. I know Java "better", I like it more & am a big fan of it's object oriented nature but...

Even with all that said I wish I payed more attention to C in my college courses. Yes, it is a pain in the ass to understand some of the pointer and reference stuff but once you get a grip on all that you're way better off. Those lessons and experiences will pay off if/when you move on to other languages.

C helps you "understand" what's going on under the hood. When you deal with performance and scalability stuff later on you'll be thankful to have that knowledge.

link|flag
vote up 1 vote down

If you have the time and willpower, I suggest you learn C first. Many answers here suggest that you should avoid C because of its pointers, arrays, lack of explicit support for OO, and crashes when you do something wrong. I disagree. You have to become comfortable with pointers, arrays, strings, experience the pain of emulating objects, and understand what happens in memory, and how stuff works. Treat this as a mental exercise that helps you understand how computers work in general.

Once you are comfortable with C and all of its nitty-gritty, then you can move to Java/C# and actually appreciate all what they have to offer over C and even C++. The time you invest in C will help you be a better/efficient developer in any other declarative language.

link|flag
vote up 1 vote down

In my experience, learning c/c++ first helped get the fundamentals of programming. I realized a few semesters later that the language you learn is not as important as the programming logic. As long as you grasp the essence of programming, you will only have to adapt it to the syntax of the programming language you want/have to use.

link|flag
vote up 0 vote down

Both will teach you discipline which usually non well trained developers lack, especially on the web.

C will teach you a lot more discipline than Java as you'll have to handle memory management and be at a generally lower level.

Neither is directly applicable to your web development experience, though Java is more related as you can easily program web apps in it.

I would take them both simultaneously to be able to compare them "in real time", so to speak. That's supposing you can handle the load, it will be hard if you've only seen PHP. If you think you can't, I'd start with C because it'll teach you more.

link|flag
vote up 0 vote down

You don't want to start with C, because you'll get bogged down in low level details, while you want to focus on the essentials of programming: algorithms, data structures, OO, ... For an absolute beginner I feel javascript is the best choice, but java will do. Java's level of abstraction is definitely closer to the other web languages than C's.

On the other hand, you have to learn C, just because it will give you a better understanding of what happens behind the scenes. This is incidentally also the same reason you have to learn assembly, eventually. In my opinion you can't be a good programmer if you don't understand how programs work on the level of bits and bytes, and learning C (and assembly) will give you that knowledge.

My advice: if you feel you can take them both and carry the workload, then do so. Otherwise, start with java, then move on to C.

link|flag
vote up 0 vote down

I would say Java first. It's a much more beginner-friendly language to learn. It is also very powerful and lets you accomplish alot in less time than C would take.

Everyone should have a look at C at some point though - it teaches you how to work closer to the computer than Java does and this is useful to know.

link|flag
vote up 0 vote down

YMMV , we all have different brains, but i'd avoid learning two languages at the same time, or in the same year. Too often i mix up details, like using a Ruby idiom in Python. I learn better by forcing myself to do everything in the one language i'm learning, even tasks best done in other languages - until i've really nailed that language from having tried doing so many differnt things in it.

link|flag
vote up 0 vote down

I had to think quite hard about this one. I think it all comes down to:

  1. Is it a good idea to postpone learning OO concepts?
  2. Is low-level memory management and data structure navigation valuable this early in your studies?

To which I answer, yes to the first, no to the second.

The more you train your mind to think procedurally, the harder it will become to make the paradigm shift to OO. I had a bear of a time shifting to OO, and you can save yourself my pain by adopting it earlier. Avoiding OO forever is not an option.

C requires your programs to look after memory very carefully, even to do pretty simple things. The data structures this creates have perfectly reasonable analogues in Java, in a slightly more forgiving environment. I think if you've implemented (say) a binary tree in Java, then it won't be so challenging later in C -- where you have to take the extra step of explicitly freeing memory you don't need any more.

While of course it's great to understand the fine details of how a computer works, and for some programmers (compiler/interpreter writers, driver implementors, game engine developers, etc.), remember that MOST programmers work a couple of layers higher than this, where it's actually important to ignore the nuts and bolts of what happens behind the scenes. When you code in C, you shouldn't usually be thinking about the target CPU - that's the compiler's job (although you should be thinking about avoiding constructs that are not portable between CPUs!). When you're programming in Java, you shouldn't usually even be thinking about the OS your code will run on.

link|flag
vote up 0 vote down

At my university (this was in 2000) I started my Computer Science Degree learning Java. The university had JUST switched from teaching all their courses in C to teaching them in Java, since Java was (as I understand it) starting to become more popular / wanted.

Well, when I say all classes, that is a little misleading. The intro classes were in Java, the 200+ level courses were taught with C examples (since those in those classes started out learning C). The professors usually didn't care if you turned your work in C, Java, etc as long as it worked -- but all discussion and examples in the class were in C. I made it a point to take an intro course in C. It was a course taught to regular engineers, not computer science engineers, so it was really, really, really basic. But it was enough for me to be able to better understand what was being discussed in my higher courses. (I find I learn better in a structured environment, which was why I took the course instead of teaching myself, not to mention the easy A).

So for me taking Java first and then C worked out ok. But as others have mentioned, pointers will hang you up. I personally think that both languages are good starters to learn; C is more functional and Java is Object Oriented. However don't get too hung up on learning a particular language -- a good programmer can program in any language. If you've time and able, I'd look into taking an assembly class as well -- I loved my assembly class and got a lot of good from it.

And while I currently do mostly web development, a lot of the job ads I've seen recently want you to have experience in C. Web development tends towards Java.

Personally if I were to do it all over again I'd have taken C first and THEN Java. I got hung up a bit at first because I was used to being able to do STRING xyz in java and myobject.do_something, and C really doesn't have Strings. Strings are merely arrays of characters in C.

link|flag
vote up 0 vote down

I'd go with Java. I personally started with C, and while it's a wonderful languages for learning how computers work on a lower level (memory management, pointer arithmetic, and other horrors), much of your work would involve creating your own abstraction layers to make up for the language's bare-bones nature. You'd write lists, strings, and other data structures and types just to get to the point where you could start solving the problem at hand.

Some people would consider this a good thing; writing your own doubly-linked list and string ADTs are something every programmer should know. And while you could do that in Java, being responsible for your own memory management and dangling pointers can be a good experience.

Thing is, though, I favor a top down approach to learning things, especially when starting from the bottom teaches you habits that are hard to change. A lot of C programmers who move on to learn new languages still think in C, and it takes time for them to make use of new language features. I know one college where Computer Science undergraduates start with SmallTalk, then Java, and finally C in their second or third year. That seems logical to me; higher level languages help you think in terms of the problem you're solving instead of thinking how the computer would process it.

I'm not sure about taking them concurrently, it depends on your way of learning things. It might be useful to compare the two languages at the same time, and depending on the pace it could help you understand each of them better. Or it could be too much for you to handle and keep up with the different language paradigms, and you'd end up not really understanding either because you didn't give them enough time to be appreciated on their own.

You should definitely not skip C altogether if you learn Java and is serious about programming. You may be able to do that with C++, but to be a good Java programmer you need to understand what happens under the hood. That's why you might also consider taking an assembly course at one point (even if it's pretty useless in real world).

Whatever you decide to do, good luck! :)

link|flag
vote up 0 vote down

I learned Java first. Now that I think about it, my interest in programming was on a steady decline until I ditched those perilous Java courses and instead took some low-level systems courses. There, I was introduced to C and assembler. When it was time to go finish up those data structures courses in Java, it was a very smooth transition.

My advise: Since you're just beginning to learn about general programming concepts, either take Java first or take them both at the same time. There is absolutely no reason not to take them concurrently, but I think being patient and learning longitudinally would be more valuable.

I know many would object to this heresy I'm about to say, but: Don't take C first. (unless its accompanied with an architecture or operating systems focus).

link|flag
vote up 0 vote down

I would lean toward C (not even C++). In fact, a great course (FREE) is provided online by Harvard at http://www.cs50.tv

Plus, knowing C will make you that much stronger in other languages such as Java, Objective C once you learn them too.

Cheers!

Justin Plants

link|flag
vote up -2 vote down

Take an introduction to programming course first - the language doesn't matter, then take C++. Every programmer should know some C++ - there's just too many important things written in it. Plus it gives you a good idea of what's going on "under the hood". Update: C++ being a superset of C and any good course should cover what's C and what's "++". Java whould be a good. next step, esp if the introduction couse didn't use java. Don't take both at the same time I've done that myself - too much to grok properly.

Update: I'm not a C++ snob. I program in VB.NET and I love it. I hated C++, but it's important and I'm glad to have been forced to take it.

link|flag
C++ has too much magic to be a good way to learn about what goes on behind the scenes. Real world C++ code does not translate easily at all to what goes on at the level of bare metal. – Joeri Sebrechts Sep 27 '08 at 15:52
Neither is java. But C++ includes C, so there's opportunity to learn bare-metal, AND opportunity to learn all the object oriented stuff. I've met too many programmers that do fine with C and Java, but can't handle C++ because C++ includes OO things java doesn't. – davenpcj Sep 27 '08 at 15:56
Really? I don't recall any magic in my C++ courses. – Booji Boy Sep 27 '08 at 15:57
I remember things like templates, memory allocation and de-allocation, pointers, stacks, queue's, the stack, the heap registers, etc... No magic. – Booji Boy Sep 27 '08 at 16:05
and of course OO concepts like inheritance and polymorphism. – Booji Boy Sep 27 '08 at 16:08
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.