Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Between C and C++, which is easier to learn? Which is more powerful? Does either do anything special that the other doesn't?

share|improve this question
5  
Both are very useful. – Hamish Grubijan Jun 12 '10 at 2:00
15  
Are you interested in a)Computer science / Engineering , or b)just having Fun ? If a) I'd recommend C. If b) Step away from your computer. – Tom Jun 12 '10 at 2:15
16  
Why not program for fun? For me this is the main reason. Making money is only side-effect. – Rotsor Jun 12 '10 at 3:04
10  
Learn brainfuck. It only has 8 operators. – Crazy Eddie Jun 12 '10 at 3:47
3  
@Noah Roberts - The funny thing is that often the advanced classes expect you to know C. In the past the intro classes were C or C++ but now they are often Java or C# basically leaving you in a hole. Operating System and Unix often require you to know C before taking the course... – Cervo Jun 12 '10 at 5:24
show 8 more comments

closed as not constructive by Flexo, interjay, Mario, Frank van Puffelen, ChrisF Mar 3 at 23:09

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

18 Answers

To learn:

  • C is the crotchety old man who lives in the engine room. He is perpetually tinkering, occasionally mumbling words that make no sense to anyone, but might be old Norse ("scanfing vastart, strtok div frexping calloc! Err, no."). When he's not mumbling, he's waving his little antique pistol in the air and ranting about how real men take out their own garbage. Despite this, he's a pretty chill teacher; he hands you the tools, points you in the right direction, and gets out of your way. But he'll just sit back and cackle when, as inevitably happens, you turn a wrench the wrong way and scalding steam erupts into your face.
  • C++ is the mad professor who's had this machine for sale in SkyMall catalogues for years now – it takes up an entire room and provides thirty-seven hundred different methods of producing delicious home-cooked meals in just three minutes flat! Really, most of the people buying this contraption just put it in a back room and limit their use to the juicer attachment and maybe just maybe the pasta maker. But you're sure you can do better! You buy the service manual from the professor and go to figure the thing out, only to discover that the person who designed the thing is none other than the crotchety old man who lives in the engine room.

In terms of power:

  • C is a chainsaw.
  • C++ is a 50-foot tall earthmover that mows down everything in its path, and has giant chainsaws sticking out of its wheel hubs to boot.

Sure, both can clear trees out of your way, but...

In terms of special:

  • C is a rockstar.
  • C++ is a narco-syndicate collective of superheroes.

I hope this clarifies.

share|improve this answer
21  
I can just say: WOW. Did you have a heavy dinner last night? – nico Jun 12 '10 at 8:48
+1 Awesome comparison. – helpermethod Dec 20 '10 at 18:37
+1 for this great comparison! – smilingbuddha Dec 13 '11 at 1:19
1  
If only every comparison between programming languages was this in-depth – David Blayney May 13 at 12:48

C++ is a little bit easier to learn at first, because you can do more powerful things with less code. But C is easier to master.

C is far easier to master, because it's a very small language. Some of the concepts (like pointers, aliasing, bit manipulation) are subtle, but you can master the syntax in a few months and never encounter a line of C code that you can't understand. The one exception is preprocessor macros - overuse of macros can make seemingly innocent C code do bizarre things.

C++ is almost impossible to master - the language is incredibly complicated, and there are dozens of obscure details that can get you into trouble. It can be very hard to read unfamiliar C++ code. Most large C++ projects have "style guides" and rules that disallow or restrict certain C++ features, to keep the project from getting too difficult to work with.

Your last question is, does either do anything special that the other doesn't. C++ is almost a perfect superset of C. That means that every C program is either already a C++ program, or with some trivial changes you can make it into a valid C++ program. This was by design. So C++ can do a lot of things that C can't.

There's only one thing that C can do that C++ can't: on most systems, C has a consistent, stable ABI. This means that two C libraries can talk to each other, no matter which version of C compiler they used. C++ program produced by different compiler versions often can't talk to each other. For this reason, C is used more often by very low-level libraries that need to be used throughout a system.

share|improve this answer
4  
@Caspin: All the compilers use the same C ABI, including MSVC. The reason the C++ ABIs are not link compatible is the result of features like name mangling. ICC, GCC, and Sun's implementation aren't link compatible for C++. Even if they were, ~10% of computers does not constitute a standard. – Billy ONeal Jun 12 '10 at 3:12
3  
@dmazzoni: A fair comparison that doesn't descend into either C or C++ FUD! Thank you! +1. – Billy ONeal Jun 12 '10 at 3:13
1  
@Billy, I wasn't claiming ICC and GCC where link compatible. I'm claiming that GCC 4.0 and GCC 3.4 are link compatible. The various versions of Visual studio are not link compatible, that is an anomaly in the c++ compiler world. – deft_code Jun 12 '10 at 3:55
1  
@Panic: Yes, literally speaking. That said, C++ code written like C code is bad C++ code. If nothing else, C++ code written like C code is probably not exception safe. – Billy ONeal Jun 12 '10 at 4:22
1  
@Neil: But each platform has a de facto standard ABI, which is good enough in practice. – Donal Fellows Jun 12 '10 at 7:09
show 9 more comments

C is much smaller language, so it will be easier to learn the entire language.

C++ has some capabilities that make it easier (encapsulation, richer user defined types, etc). However, C++ also has some features that are better avoided (multiple inheritance), so if done wrong learning it could be a disaster.

Also the C++ language is so huge that I doubt there are many that know very nook and cranny of the language.

Accelerated C++ is a great way to learn C++. It avoids the darker corners and still teaches C++, as opposed to C with classes.

share|improve this answer
3  
What's wrong with multiple inheritance? Multiple inheritance is the foundation for interfaces in C++. I would agree that multiple implementation inheritance should be avoided most of the time, but multiple inheritance itself is fine. – Billy ONeal Jun 12 '10 at 3:15
@Billy, I should have qualified my comment. Multiple inheritance is best avoid until it is absolutely needed. multiply inheriting interfaces is one paradigm that can be done in C++ but is better left for Java or C# where it is better supported. In all my professional career I've only seen multiple inheritance done correctly with std::iostreams, boost::non_copyable, and boost::enable_shared_from_this. And the latter two are more of a mixin paradigm than a multiple interfaces paradigm. – deft_code Jun 12 '10 at 3:52
3  
-1: I don't see how it's "Better supported" in Java and C# given that C++ supports multiple implementation inheritance, while Java and C# don't. You can do everything Java and C# do with C++'s model, but not vice versa. Therefore I fail to see how one is "better supported". – Billy ONeal Jun 12 '10 at 3:55
2  
@Billy Java and C# support the concept of an interface directly with the interface mechanism. In C++, you have to simulate it with purely abstract base classes. That's why it's "better supported" in Java and C#. – FredOverflow Jun 12 '10 at 8:39
2  
@FredOverflow: What is the difference between an interface and an abstract base class? Nothing! – Billy ONeal Jun 12 '10 at 14:53
show 1 more comment

Although C is the "smaller" language and C++ has this !!!HUGE BAG OF FEATURES!!! that so many here seem to find overwhelming, I would definitely say that C++ is going to be easier for a newb than C so long as you stay the hell away from the C part of the language.

You see, you can write C++ code that uses char*, char[], gets, fgets, etc... but everyone who knows C++ knows that you'd have to be freaking insane to want to. Why? Because of all the nasty bugs that live and breed there. You see, working with these types and functions is sort of like going out to a farm with a rifle to make a hamburger. In the end you might very well end up with a slightly leaner product but ALWAYS having to do all that gutting and skinning just gets really freaking old....so at some point you'll make a mistake.

And who in their right mind takes a new cook and hands them a rifle? No, first you hand them a prepackaged chunk of ground beef that's been processed by an expert butcher. This is what the C++ part of C++ is like. You know, the STL and all that...

Sure, at some point you're going to go into an expert cook's kitchen and see a spice you don't recognize. Here's the thing though...you don't have to use it. If you did learn you might make a better burger but if you're happy with what you're eating then you don't need to focus on the mass ratios of sea salt and table salt.

Of course, you have to learn from the right cook. Ted Nugent's cookbook isn't going to be the best for someone that doesn't own an arsenal of assault riffles...and a C++ book that starts out with scanf("%s",name) is likewise absurd. Of course, someone else already linked you with the best beginner book out there, Accelerated C++.

Everyone of course knows that fire+gun+knife==food is much easier to remember than the 20 different packages you need to cook a hamburger like a modern, civilized human being but I prefer the latter to the former most of the time and I definitely would consider it the easier path for those just learning to eat.

share|improve this answer
+1 for the Nugent reference. Though The Nuge would probably be an ASM programmer... – Drew Hall Jun 12 '10 at 4:00
1  
"No, first you hand them a prepackaged chunk of ground beef that's been processed by an expert butcher. This is what the C++ part of C++ is like. You know, the STL and all that..." Sorry friend, C++ is like giving you the whole cow and all the parts you need to build a commercial jet as the tools for making a hamburger--eventually you'll stumble upon something that might help you, but it will take you far too long to do it and even then, all of the caveats with said tool will get you quickly. – weberc2 Mar 28 at 14:51
@weberc2 - well argued. I've totally changed my mind on the subject now that you've replied and corrected my metaphor. Thanks! How will I ever repay you? – Crazy Eddie Mar 29 at 2:19
@CrazyEddie - One good completely-unfounded opinion deserves another. ;) It was all in good fun. I just marvel that C++ can be viewed as a nice language to develop in. C vs C++ debates seem so silly in this day and age. It's like listening to people argue about the best weapons: club vs sharp stick. But my opinions often exceed my experience. :) – weberc2 Mar 29 at 21:05

Maybe not the answer you wanted, but I usually suggest new programmers start with python (www.python.org), then move (if appropriate) to another language when they have some idea what they want out of a language. Python is available for most platforms and is heavy duty enough to sustain large projects when needed.

If the choice is truly either C / C++ then by all means start with C. It's simpler and will serve as a springboard to C++ which you will ALSO want to learn. Both have advantages, and I choose which to use based on the project demands. Outside of pure systems programming / bit twiddling most folks I know find C++ a better choice for medium to large projects since it is object oriented. However there is LOTS of code still maintained in C even when it no longer really makes sense. (X-windows is my favorite example that I'd like to see re-written in C++)

Once you're comfortable with those languages I'd suggest you look also at go. (www.golang.org) It's a new language but I believe it will be a major player in the future. Go looks a lot like C but with some features to make concurrent programs easier to write. In other words, if you want to write programs that make the best use of that multi-core CPU you bought then you need to learn go.

Probably too long an answer. Sorry. :-)

Hotei

share|improve this answer
4  
I've seen entirely too many programmers start with languages like Python and become entirely too lazy. Python might be a productive language, but I'd not recommend it as a first language because it's to easy to abuse it. – Billy ONeal Jun 12 '10 at 3:17
3  
DO NOT! Learn C expecting it to be a "springboard" into C++. If I ever have to work with you I'd have to do horrible things to you. People that learn C and then start writing C++ like that are a) a dime a dozen, and b) horrible, horrible C++ programmers. – Crazy Eddie Jun 12 '10 at 3:32
2  
C was my language in college, and served as a springboard to a later career in C++. It turned out fantastically for me. What a curious statement to make. – Owen S. Aug 15 '12 at 22:59
@BillyONeal "Too lazy" as in they write code that is easy to read and maintain rather than severely obfuscating the code to squeeze out that extra CPU cycle? Because they tend to write code that is safe? I'm not a Python programmer, but I've worked with folks from Python and C/C++ beginnings and I definitely prefer the Python folks (they're faster, they adapt better, their work is safer, and their code is wonderfully sane). – weberc2 Mar 28 at 14:56
1  
@BillyONeal: with that logic, we should teach everyone machine code as a first language. Neither C nor C++ obfuscate code, but writing convoluted code to save processor cycles does seem to be commonplace. Moreover, I don't see how you get from "some people use Python to avoid pointers" to "Python is a bad intro language". I contend that Python is a better introductory language than C/C++ because the latter often involve complexities completely superfluous to the nature of solving the problem (in C 20,000 + 20,000 is negative?), but which exist only due to deficiencies in the language itself. – weberc2 Mar 28 at 19:15
show 2 more comments

For an almost new programmer I recommend C, and in particular the C book by Brian Kernighan and Dennis Ritchie (the chief designer).

Which is easier to learn?

I don't think it's possible to say definitively that either language is easier to learn. My experience observing students is that with C++ is it sometimes a little easier to get started and to write your first programs, because you can do some interesting things without really understanding dynamic memory allocation or pointers—and these are somewhat difficult topics. In C, you practically can't get out of bed in the morning until you understand dynamic memory allocation and pointers.

But when you get beyond a point of beginning ability, C++ turns hairy very quickly, whereas once you understand dynamic memory and pointers, you have pretty much mastered what there is to C, with maybe a couple of additions like recursion (important but language-agnostic) and C unions.

Which is more powerful?

It's not clear what you mean by "powerful", but C++ has many more language constructs, and you can cause a lot more computation to happen with simple-seeming C++ code than you can with comparable C code. For some programmers there is such a thing as too much power, like trying to ride a rocket ship on the outside.

Does either do anything special that the other doesn't?

Definitely. C++ has a host of special features, of which the most important are probably C++ templates for generic programming and C++ classes with multiple inheritance. C++ also has exceptions, which are an important and valuable feature. And much much more: namespaces, operator overloading, the list goes on. If you believe that there is such a thing as a language with too many features, C++ probably qualifies. But despite its complexity, C++ provides a lot of support for important software-engineering principles in areas where C provides nothing.

The main special thing about C that you can't duplicate in C++ is more subtle: C has a very perspicuous cost model. You can look at a piece of C code and be pretty confident you know what's happening to the machine underneath, and you can make a very good eyeball estimate of what it's going to cost. Understanding the costs involved in executing a C++ program is much, much harder—there are just too many ways to hide computation under the covers.

Summary: If your aim is to skim the surface of programming and build a few interesting things, you may find it easier to get started with C++ and its powerful Standard Template Library, as well as the boost libraries. If your aim is to plunge deep into the topic and build mastery, you should learn C.

share|improve this answer
+2 nicely said (off by one error) – Brian R. Bondy Jun 12 '10 at 3:00

C is a much smaller language and is, as a result, much easier to learn the fundamentals of. In comparison C++ is much, much, much, much larger and full of all kinds of sharp corners that can get you while you're learning. That being said, C++ is almost a superset of C, and you can start learning C++ by treating it as a "better C" and slathering on the other paradigms (object-oriented, declarative meta-programming, etc.) as you need them. Or you can, even better, start off with the simpler aspects of object-oriented programming and branch out into the other supported paradigms as you get more comfortable.

At their core, neither C nor C++ is "more powerful". They are both Turing complete and thus "equally powerful". What C++ is, however, is far more expressive. The language has many constructs built in that make some concepts easier to express and easier to comprehend than in C, although C could, in theory, do them as well.

One thing that puts C over C++ in terms of learning first, IMO, is that it is effectively the "lingua franca" of programming these days. Pick a programming language. Any programming language. Chances are very high that it has a FFI (foreign function interface) that's based on C. C is basically the "glue" language of the computing world these days, and the bridge, usually, between low-level programming and high-level programming languages. Further, there's also the issue of portability. I can't think of a modern environment that doesn't offer a C compiler (and very few older ones still in use which don't). I can think of dozens without C++ compilers, however, nor Java compilers nor any other of the "popular" languages. If you learn C you'll be able to get at least some programming done on practically any platform short of the tiniest of embedded systems (and even those will mostly have C compilers). C++ has nowhere near the saturation.

share|improve this answer
Explanation for the -1 vote please? Did I make a factual error? Did the response not actually answer the question? – JUST MY correct OPINION Jun 12 '10 at 11:14
"They are both Turing complete and thus "equally powerful"." Note that the proof that tells this is true does not also specify that the two UTM's run the same programs at the same efficiency. In fact, what is easy for one could take another more resources and time than are contained in our universe. – Crazy Eddie Jun 13 '10 at 3:27
Had I said "equally efficient" you'd have a point. Seeing as I didn't, you don't. – JUST MY correct OPINION Jun 13 '10 at 3:49

So much debate. Blah blah blah. I'll make it simple for you:

Learn C++. Read this book first.

share|improve this answer
1  
The book recommended is Accelerated C++. A heartfelt +1 from me. – sbi Jun 12 '10 at 7:00
Who's afraid of C++ is a great book as well for beginners – Jarrod Roberson Jun 17 '10 at 18:23
  1. C++ is easier to learn.
  2. Arguably, neither is more powerful. But C is slightly more low-level.
  3. C++ has classes, templates, and a bunch of other awesome stuff you'll eventually learn to hate.

People write books on this subject but since it looks like you're new, I kept it simple :)

share|improve this answer
6  
I wouldn't say C++ is easier to learn. In fact I'd say the opposite... which is why when people claim they are C++ programmers they are actually C programmers using some of C++. – Brian R. Bondy Jun 12 '10 at 2:22
3  
What makes C++ so easy to use for beginners is the STL. And the STL is C++. – David Titarenco Jun 12 '10 at 2:26
1  
It not even fair to say that C is more low-level, since anything you can do in C you can do in C++. – John Dibling Jun 12 '10 at 2:31
1  
That's not what I meant. I meant that something like the STL can't be done with C and it's a huge part of the C++ standard. And a huge part why it's more newbie-friendly. – David Titarenco Jun 12 '10 at 2:35
1  
C++ is easier to learn? What planet are you from? – Alex B Jun 12 '10 at 4:57
show 10 more comments

I actually find C to be easier, first, the standard is smaller, second there is "less to learn", and third, there's no way to suddenly be surprised by unfamiliar syntax when looking at code samples around the net. C has a smaller language footprint, less tokens have multiple context based meaning.

With that being said, between option A and option B, I choose option C...C# that is. The language is cleaner and makes worrying about memory management and reference types a little less confusing (although you still have to worry about them, it's much less troublesome for a new developer.) At the same time, you'll learn "Pure" Object oriented programming in a language that is still evolving. C# is one of the fastest growing languages, and the demand for .NET devs is starting to surpass that of C (but not C++) programmers.

My personal reccommendation however... Learn C, and then learn C#, or learn C#... and then learn C... Either way, once you know those two, learning C# takes just a few weeks and seems familiar.

My source? Me, 3 of my department co-workers, and a 2 hour discussion on this very topic around the office a few weeks ago, the devs that started With C seemed to have the most firm grasp on how code REALLY works, the devs that started with C++ leaned towards loose testing and "hacker" style coding, and the devs that started with C# usually had a really good grasp on "best practice." such as testing and design patterns. Either way, the C++ first programmers usually loathed learning anything else at first and fought against learning other languages simply because they were different. C# first programmers, usually didn't want to learn other languages, because they didn't feel that they'd have much to gain (tho i completely disagree) and C first programmers... learn it, realize how limited it is, and want to get away to something more expressive ASAP (C#/C++/Cyanide pills in their bosses's coffee, etc.)

share|improve this answer

I think this is very debatable...

I personally thought that C was easier because there was no classes. But, learning about classes wasn't that much more to learn. Unfortunately, I was naive, and still am for that fact of the matter, and didn't realize there was a whole OOP methodology, that, because C has no classes, makes C++ a lot more difficult to master (I haven't mastered it yet either).

Also, what are you interested in? C++ is very good for making GUI (Graphical User Interfaces) with another library. Whereas, C is good for core development rather than graphics, because it is generally more efficient than C++.

Another point, once you learn C++ you have an easier transition to a lot of other languages because it OO. A lot of popular languages are OO languages and learning C++ gives you an easier transitions to those languages. Whereas, with C, you only get a view of procedural languages.

If your not in a rush why not learn the basics both? They are very similar, C++ is almost a strict superset of C (with a few exceptions). This way, you can learn about the differences. Also, when you learn both you realize that there are differences in the way approach programming with each since C is procedural and C++ is OO.

Yet if you are in a rush, chances are you probably should learn C++ even though it is slightly harder to learn the basics of because it opens up a lot of opportunities for beginners sooner.

share|improve this answer

Between C and C++, which is easier to learn?

C is a reasonably compact language. If you have the kind of brain that can grasp the concept of pointers, you could learn C inside a month.

C++ is a monstrosity with truly enormous depth. It will take you years to become a C++ expert - and you will probably never truly master it.

Which is more powerful?

C++ is a superset of C. What C++ adds will allow you to do more while writing less code - I'd call that more "powerful".

Does either do anything special that the other doesn't?

C++ has a more well-equipped standard library, which has some very nice data structures and algorithms.

C on the other hand lacks the kind of facilities for doing "data structure stuff" easily and safely. If you want to be productive at writing any kind of non-trivial program - you want the "data structure stuff" ;)

C++ will merrily let you write C-style code. This is considered extremely poor form. And if you learn C before you learn C++ you'll be doubly at risk of doing this. Here is a good starting point of you want to write good C++ code (a very difficult thing).


Now that being said - learn C# (or python or something). From your own criteria: It's easier to learn, it's more powerful, and it does quite a few special things that C and C++ do not.

share|improve this answer
C++ is not a superset of C (it was). I wouldn't encourage no one to learn C# unless it was only for a short term professional reason (learn Python if you must you can always use IronPython or Boo with .net) – Panic Jun 12 '10 at 4:47
Doing more while writing less code is not "more powerful" it's "more expressive". – JUST MY correct OPINION Jun 12 '10 at 4:56
Thankyou above two commenters for being pedantic :) – Andrew Russell Jun 12 '10 at 5:04
@Panic: As long as we're being pedantic, C++ was never quite a superset of C, since there were things that differed slightly between languages. 'A' is an int in C and a char in C++, and there are cases where end-of-line comments make a program mean two different things in C95 and C++03. – David Thornley Jun 17 '10 at 19:14

If you know some programming and know what object oriented programming stands for, then definitely go C++. By other hand, if you are new to programming and want to learn basic principles and algorithms, then try whit C.

Since you are new, go for C. It is simpler and you can keep most of language in your head. C++ is just to huge for beginner in my opinion.

share|improve this answer

I think one point is to mention that all of these imperative, statically typed languages are semantically very similar indeed. In fact semantics is much more important than syntax when it comes to learning as IDEs will take care of much of that, plus compilers and debuggers.

The semantics of OOP are quite specific and since C isn't strictly OOP by any means, then C++, C# or Java are better as they support this. It's also much easier (I think) to build GUIs with these more modern languages.

share|improve this answer
1  
C++ actually is a multi-paradigm language, not an OO language. It does support OO, but it also supports other paradigms (for example, Generic Programming). – sbi Jun 12 '10 at 7:05
A fair point, but I'd say OOP is the most significant aspect to the C++ multi-paradigm language features. I also think that OOP should be something to think about even in the very early days of learning to program. – AlexW Jun 14 '10 at 10:42

Everyone seems to be giving mostly an over-engineered answer.

The simple question was:

Between C and C++, which is easier to learn? Which is more powerful? Does either do anything special that the other doesn't?

The simple answer is:

C is easier to learn.

C and C++ are equally powerful languages, it all depends on what type of problems they are applied to.

C++ has a lot more special built-in constructs/abstractions that C, that is why C is easier to learn.

... more could be said but this covers your questions.

share|improve this answer
Having taught C++ to students (with one year of Java experience as well as to programming novices) I disagree that C is easier to learn. They had immense problems with the C parts of the language, but immediately picked up, e.g., std::string. – sbi Jun 12 '10 at 7:02
3  
If you go beyond your favorite part of the language and really teach the complete package you will have to teach them what std::string is and the complexity is then the same. If you only teach your favorite part then you aren't really teaching them the real thing (it may depend on the objective of the class), that is why abstractions can be dangerous without a deeper understanding of the basis. – Panic Jun 13 '10 at 0:37

C++ makes it easier for a beginner to start doing useful things. However, it is by and large a superset of C. Also, many of the additional features are fairly complex. Thus, it's much easier to learn most of C than most of C++.

share|improve this answer
2  
I have to strongly disagree with you (but I'm not going to -1 since it's a difference of opinion). I know many people that would strongly advise against learning C, altogether. C is ridiculously hard to learn for a newcomer (Fran Allen would agree :p) and very rarely do people write anything in C nowadays, anyway. Unless Fry wants to get into computer science (and isn't just learning how to program for fun), I wouldn't suggest even looking at C. – David Titarenco Jun 12 '10 at 2:05
@David, what part of my answer are you actually disagreeing with? I didn't say he should learn C (or C++) first. Plenty of useful code certainly is still written in C, though, from web servers to IM clients to kernels to programming languages. And what makes you think the only two choices are "computer science" and "fun"? – Matthew Flaschen Jun 12 '10 at 2:14
I'm disagreeing with "it's much easier to learn most of C then most of C++". I know many people much smarter than me that would also disagree with that. Memory management, just as an arbitrary example, is significantly more difficult in C. Suggesting a newbie programmer learn C is pretty obtuse in my opinion. I'm not going to start debating semantics. "Fun" or "computer science" are merely euphemisms. – David Titarenco Jun 12 '10 at 2:20
1  
@David: I think that the point here is learning 100% of C++ is much harder than learning 100% of C, since 100% of C++ = 100% of C plus a whole lot more. – John Dibling Jun 12 '10 at 2:30
1  
@David: You seem to be debating Matthew's assertion that a newbie programmer should learn C. Only one problem: Matthew never made that assertion. As far as I can tell, Matthew never made any recommendation for one language over the other whatsoever. Why/what are you arguing? – John Dibling Jun 12 '10 at 2:35
show 8 more comments

In order to avoid a lot of confusions it is best that you learn C first. Understand pointers very well and after you played a little in C (File I/O, some data structures: trees, [double-]linked lists, arrays) and you are confident you can start learning C++ in parallel. C is a very important language to understand because it will make it easier to understand problems that may appear in languages that are more evolved (C++ for example).

Learning C++ first it is easier but is has some disadvantages. Personally I knew a person who always used STL containers and was unable to debug a code with pointers written mostly in a C style. I believe that those persons shouldn't be considered programmers.

Enough talking, I say you learn C first (especially pointers). C++ will just work after that.

share|improve this answer
1  
Learning C first usually makes for some very confused C++ programmers who write C in C++, leading to bad style and easily avoided bugs. – sbi Jun 12 '10 at 7:12

Between C and C++, which is easier to learn?

C++ is completely compatible with C So for C++ there are more things to c.

Which is more powerful?

C++ has added features that can help you, but in terms of achieving something, Both are Equal,

Does either do anything special that the other doesn't?

C++ has many added features that if learnt properly can make your life easy.

share|improve this answer
4  
C++ is not completely compatible with C... – Panic Jun 12 '10 at 4:43

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