vote up 26 vote down star
9

Since C++ seems to have all of C's features, why learn C over C++?

flag

Ok, to the users who are posting to close this question. Post your reason as to why this question should be closed! It is SO-Etiquette. If it is a dupe, link it, or if you have a different reason then list it. – Simucal Jan 27 at 8:06

24 Answers

vote up 49 vote down check

One reason you might program in C is if you intend to read the generated assembly code. C++ does name-mangling, generates virtual tables for classes that use virtual functions, and other such things that will make the resulting assembly code harder to read (although I'm sure that doesn't scare some programmers). I'm a bit of an assembly noob and I sometimes write C code just to see what kind of assembly the compiler generates for the purpose of learning. This can also be a good way to research optimization strategies, for instance.

Another reason to stick with C is if you have a project or team where the advanced features of C++ are seen as a risk. Perhaps the project has a very straight-forward design and you don't want there to be any excuse for team members to get fancy with a complicated class hierarchy (this is more of a team management problem than a real tech problem, obviously). The decision to go with C may force project members to approach the problem in a simple way, although one hopes that such management trickery would never be needed in the first place.

Simucal made good comment on the above point in one of the other answers: "I know that the decision to code Git in C vs C++ was partly due to that. Linus was raving about the number of "bad" c++ programmers and how using C instead, he was keeping a huge amount of poor developers out." (link added)

Yet another reason I can think of to go with C is if you need to write a compiler for your target platform because there isn't a suitable one available. This is highly hypothetical, but if I found myself in a position of trying to bootstrap a software development pipeline for a hardware platform without existing compiler tools, I'd start by writing a C compiler because it's far easier to do so than to write, say, a C++ compiler.

One reason to learn C (but not necessarily use it) is to gain insight into the roots of programming. C was an extremely influential language that helped shape Unix culture as well as all of modern computer technology. One can better understand the design of C++, Unix, and even how assembly code works by having a detailed knowledge of C. It's yet another important puzzle piece in understanding how computer technology all fits together.

link|flag
1  
Very good answer. Also embedded systems, working with low level systems and operating system internals, etc. – Simucal Jan 27 at 8:03
Aslo, if you bitch about strings in C++ you should do you own String implementation in C. For good practice! – Filip Ekberg Jan 27 at 8:08
2  
I disagree with your second part. Strongly. This is ultimately a failure of the team to communicate properly. Imposing arbitrary restrictions is a poor way of handling this. – Konrad Rudolph Jan 27 at 8:09
2  
I mentioned this elsewhere, but Linus Torvalds decision to write Git in C was in large part due to him wanting keep bad developers out. He ranted and raved about the number of bad c++ programmers out there and how writing in C by definition will keep many out. – Simucal Jan 27 at 8:14
@Simucal: I just included your quote from Konrad Rudolph's answer. Good to see you recap it here. @Konrad: I agree that in a typical dev team, it would be a horrible reason to go with C, but it is possibly a good idea in a special case. – Parappa Jan 27 at 8:17
show 5 more comments
vote up 1 vote down

C++ is basicly C with some new features, such as classes for instance. If you are new to programming you should concider learning C first. You shouldn't be able to dig too deep down before you know the foundations.

link|flag
1  
I wouldn't do that. Good C++ programming has little to do with good C programming so starting C++ after you're good at C will just mean you have to do a lot of unlearning. – Iraimbilanja Jan 27 at 12:12
vote up 11 vote down
  • C requires less runtime support (useful in low-level environments, such as embedded systems or OS components)
  • C is compiled faster ;-)
link|flag
compiled faster? hey.. thats argumentative, depending on the compiler and the target system :P – Filip Ekberg Jan 27 at 7:49
@Filip Ekberg, I still say in most cases.. it is compiled faster. – Simucal Jan 27 at 7:50
Has anybody ever created a project functionally equivalent using C and C++ and then compared compilation time? A C++ compiler is generating a lot of code for you "under the hood", this takes more time - as you'd expect. If you write that code in C, how does the copmile time compare? – Richard Corden Jan 27 at 11:01
yeah its compiled faster, but who really cares that much about compile speed? :D – CrazyJugglerDrummer Aug 20 at 1:21
It only compiles faster because C programs do such simplistic tasks! C is for Cimian, that's good enough for me. – Kieveli Sep 11 at 12:24
vote up 6 vote down

There are many situations that C is still useful. First, it has probably the biggest code page available. Many open source projects (os kernels, toolkits, web servers, http clients) are written in C. I don't think that these are going to be ported in another language soon. So if you want to be a contributor to a major open source project, you need to know C well. The same applies if you need to support legacy code.

C is also mainly used in embedded software projects. Micro-controllers have limited resources and C is better suited for them than C++. Most device drivers are also developed in C.

link|flag
vote up 2 vote down
  • C is much easier to learn then c++
  • C is slightly easier to master then c++
  • C has a wider support of processors then c++
  • it is easy to shoot yourself in the foot with both, but c++ has more class
  • you would learn c as part of your c++ studies anyway.
link|flag
I believe that your first point is fundamentally wrong. Starting with learning C++ is much easier for new programmers than starting with C even if the language has some features that are extremely complicated. – Konrad Rudolph Jan 27 at 8:07
@Konrad, i would have to disagree. If you think about it, the fundamentals of programming is what? I would say when starting programming need to be simple, light-weight, strucuted and straight forward. C has a benefit, you CAN'T do advance stuff ( as you acn in C++ ) if you don't know Exactly how. – Filip Ekberg Jan 27 at 8:14
@Konrad it would be nice to show us why C++ should be easier. You have to understand more in C++ than in C to get your first program running – Friedrich Jan 27 at 8:39
@Friedrich - Starting with "Accelerated C++" is pretty easy. – Vadim Ferderer Jan 27 at 9:44
1  
@Vadim, I'd heard that before but I hated it. One could argue "Starting with K&R is pretty easy" as well. The problem I had with Accelerated C++ was that they introduce too much magic too soon, so you have no idea what's actually happening. I like to learn bottom up. – a2800276 Jan 27 at 13:03
show 4 more comments
vote up 4 vote down

There is none. Even if you don't use the whole C++ feature set C++ still offers some substential advantages over C. This is why some of the other arguments mentioned here fall short of reality:

C is compiled faster

For normal code this is definitely true. C++ does some really wacky stuff at compile time which, unfortunately, is time-consuming. However, if compile time really matters, you're able to write code that compiles just as fast as equivalent C code.

C requires less runtime support (useful in low-level environments, such as embedded systems or OS components)

Also true. However, there are special stripped-down versions of the C++ runtime for embedded systems. Again, this drastically diminishes C++' advantage over C but it still has advantages!

First, [C] has probably the biggest code page available.

Not an argument, since all of this code can be directly used from C++. However, this is obviously true:

So if you want to be a contributor to a major open source project, you need to know C well.

So yes, in such a situation it really pays to know C. Another reason are the aforementioned embedded systems. While there are C++ compilers for some of them, this is not true for all environments and sometimes it's simply a cost factor that speaks against bootstrapping a C++ compiler to work here. Generally, if no specialized compiler for a given platform exists, don't use C++ there.

However, I would still strongly advise first learning C++ and then "downgrading" to C because C++ is much easier to learn. I've talked about the reasons before.

link|flag
What about Parappa's point of "advanced features of C++ are seen as a risk". I know that the decision to code Git in C vs C++ was partly due to that. Linus was raving about the number of "bad" c++ programmers and how using C instead, he was keeping a huge amount of poor developers out. – Simucal Jan 27 at 8:10
+1 Excellent answer. – Parappa Jan 27 at 8:11
@Simucal: I'm sorry but I don't put much stock in what Linus has to say here. Concerning C vs. C++ (or just generally programming), this guy expresses too many wacky opinions to be taken seriously. He may be a brilliant programmer but he has some severe shortcomings in the area of argumentation. – Konrad Rudolph Jan 27 at 8:14
I agree with you that he is a little wonky. However, I do see some logic in the fact that C++ has many, many more ways to shoot yourself in the foot or do things in cludgey ways. With an experienced team this is a non-issue but I could see in being one with a loose team of varying skill level. – Simucal Jan 27 at 8:18
vote up 3 vote down
  • Simplicity
  • Portability
  • Maintainability
  • Interfacing to Scripting Languages

In all this areas C has an advantage over C++. C is a very matured language and backward compatability was always very high on the list. One can say just with ANSI C 99 this has changed, because then some new things were introduced (e.g complex numbers) before they were in widespread use.This has let to the situation that, people do not use some of the ANSI C99 stuff because their compiler does not support them. But one still can even compile K&R C with the current C compilers. Maybe in the COBOL or FORTRAN world something comparable can be observed...

link|flag
You gotta be kidding me, you win the price! I've never seen anyone use d the words "simplicity", "portabillity" and "maintainabillity" with C or C++ :D I agree on c++ being too complex. – Filip Ekberg Jan 27 at 8:11
I would argue with maintainability but I agree with portability. ANSI-C will run on pretty much anything. Sure - the higher level libraries will not be portable but the language itself very-much-so is. – Nick Jan 27 at 18:59
1  
I'm sorry, but maintainability means also that your code once written will run with another version of your compiler also. My understanding is that you can not count on backward compatability in one compiler line but also not with cross-compioer compatability. – Friedrich Jan 29 at 6:01
C isn't simple and it is a maintainability nightmare when the code base grows out of small proportions. See Lua and PHP for example. – the_drow Jun 11 at 4:28
Well every large code base get's nightmarishly. C is simple in comparison to nearly other programming language. Or what do you understan under an "simple" programming language? – Friedrich Jul 2 at 4:05
vote up 3 vote down

You might also find this thread interesting:

http://stackoverflow.com/questions/211686/what-do-you-miss-when-you-have-to-use-c-instead-of-c

link|flag
vote up 1 vote down

what is the gain then

constraining self by forms that

limit expression?

link|flag
Is this meant to be a comment? – Simucal Jan 27 at 9:12
no, it's meant to be a haiku. – Pete Kirkham Jan 27 at 10:03
vote up 24 vote down

Linus Torvalds has a pretty strong opinion on the matter.

He was asked the following concerning his Git version control system:

When I first looked at Git source code [it] struck me as odd: Pure C as opposed to C++. No idea why. Please don't talk about portability, it's BS.

His reponse is pretty entertaining:

C++ is a horrible language. It's made more horrible by the fact that a lot of substandard programmers use it, to the point where it's much much easier to generate total and utter crap with it. Quite frankly, even if the choice of C were to do nothing but keep the C++ programmers out, that in itself would be a huge reason to use C.

In other words: the choice of C is the only sane choice. I know Miles Bader jokingly said "to piss you off", but it's actually true. I've come to the conclusion that any programmer that would prefer the project to be in C++ over C is likely a programmer that I really would prefer to piss off, so that he doesn't come and screw up any project I'm involved with.

C++ leads to really really bad design choices. You invariably start using the "nice" library features of the language like STL and Boost and other total and utter crap, that may "help" you program, but causes:

  • infinite amounts of pain when they don't work (and anybody who tells me that STL and especially Boost are stable and portable is just so full of BS that it's not even funny)

  • inefficient abstracted programming models where two years down the road you notice that some abstraction wasn't very efficient, but now all your code depends on all the nice object models around it, and you cannot fix it without rewriting your app.

In other words, the only way to do good, efficient, and system-level and portable C++ ends up to limit yourself to all the things that are basically available in C. And limiting your project to C means that people don't screw that up, and also means that you get a lot of programmers that do actually understand low-level issues and don't screw things up with any idiotic "object model" crap.

So I'm sorry, but for something like git, where efficiency was a primary objective, the "advantages" of C++ is just a huge mistake. The fact that we also piss off people who cannot see that is just a big additional advantage.

If you want a VCS that is written in C++, go play with Monotone. Really. They use a "real database". They use "nice object-oriented libraries". They use "nice C++ abstractions". And quite frankly, as a result of all these design decisions that sound so appealing to some CS people, the end result is a horrible and unmaintainable mess.

link|flag
1  
When all you have is a hammer, everything looks like a nail... – Greg Hewgill Jan 27 at 9:48
16  
LOL! Those comments sound very much like the comments assembly language programmers use to make about C programmers. – Ferruccio Jan 27 at 12:52
8  
And they also look a lot like the argument C++ programmers make about Java.... Interesting. – Bill K Feb 3 at 3:03
11  
It is amusing, but also very skewed. Very few people need ultra-portable source code touched by thousands of unvetted contributors, many of questionable skills. For the vast majority of projects on the planet, C++ is a superior tool to C. – Euro Micelli Feb 19 at 5:46
1  
and here is Stephen Dewhurst's response to Linus's claim. stackoverflow.com/questions/385297/… – Comptrol Jul 7 at 12:07
show 6 more comments
vote up 9 vote down

One very good reason is that C has a de facto standard ABI on most platforms, while C++ doesn't.

link|flag
Great point. On Windows, for example, this lets you write dlls on different compilers and they still work together. The non-compatible ABI is apparently an intentional design feature of C++. Thus, we get extern "C" hacks in any c++ dll exports – kibibu Aug 25 at 3:53
vote up 5 vote down

Portability has been mentioned before but it has not been stressed enough. Something written in C89 (ANSI 1989 Standard) is EXTREMELY PORTABLE, it is literally referred to as portable assembly. If portability is your key concern, C89 is the way to go. Nothing, I mean nothing is more easy to port than something written in C89. Rest assured that you will find a C89 compiler for almost any hardware.

link|flag
Are you sure you are not talking about C99? – the_drow Jun 11 at 4:27
No. I am not. C99 is relatively new and its portability is limited as compared to C89. – Nikhil Jun 16 at 16:12
vote up 2 vote down

C is a much smaller language with fewer but extremely stable functionality. - It has many flaws, however these flaws are widely known. - The flaws in C can easily be managed through the use of conventions, guidelines and recommended libraries, some of which can be specified by the project. - It is widely supported, and is much the same everywhere you go.

In addition, because C is much smaller, it is also much simpler - yes, you do have to deal with pointers and low level detail, however good programming practice in C is to use functional decomposition to abstract these details wherever possible.

Naive or unskilled programmers can easily be knocked about and forced to conform to the project because the guidelines needed are very small.

In C++, however, it is a huge language that is constantly evolving, functionality that should've been avoided in projects 5 years ago should be recommended today, and vice versa. It has functionality that can be used one platform, but can not be used on another, and the style of C++ is a topic that has yet to mature.

Caveats: - my usage of 'smaller', 'widely', 'much the same', 'everywhere', 'huge' are all relative terms, not absolute. - I'm a C++ fan, and love the language - Simplicity, however, is not in C++'s lingo, although it has been said that within C++, there's a smaller, simpler language struggling to emerge.

link|flag
vote up 6 vote down

Two quick points:

  • Embedded systems come to mind, C is less resource-hungry
  • Portability is also a point as C compilers are more easily ported

But for larger systems, I tend to go with C++ over C almost all the time.

link|flag
vote up 1 vote down

Almost all high performance stuff. There is also COBOL which is highly recommended for processing high amount of data. Probably your phone bill is printed by a mainframe running a COBOL program.

link|flag
vote up 2 vote down

C is more portable and faster than C++.

Many embedded projects will probably use C.

GIT is written in C, linus hates c++.

link|flag
1  
More portable? Probably. Faster? Thems fighting words: there are so many different variations of how you can use both languages and so many examples of each being faster than the other for particular uses, that it's almost meaningless to make a blanket statement like that. If you want to stand by it you should give some specific examples. – quark Aug 20 at 0:00
vote up 5 vote down

The performance differences between compiled C and compiled C++ are very minor (but sometimes relevant nevertheless). It's largely a stylistic choice (with profound consequences to your software design mind you) although on some more arcane platforms you may find easier access to C compilers than C++ compilers (although gcc is almost ubiquitous these days).

Some have strong opinions about this. Linus Torvalds famously ranted against C++:

C++ is a horrible language. It's made more horrible by the fact that a lot of substandard programmers use it, to the point where it's much much easier to generate total and utter crap with it. Quite frankly, even if the choice of C were to do nothing but keep the C++ programmers out, that in itself would be a huge reason to use C.

In other words: the choice of C is the only sane choice. I know Miles Bader jokingly said "to piss you off", but it's actually true. I've come to the conclusion that any programmer that would prefer the project to be in C++ over C is likely a programmer that I really would prefer to piss off, so that he doesn't come and screw up any project I'm involved with.

C++ leads to really really bad design choices. You invariably start using the "nice" library features of the language like STL and Boost and other total and utter crap, that may "help" you program, but causes:

  • infinite amounts of pain when they don't work (and anybody who tells me
    that STL and especially Boost are stable and portable is just so full
    of BS that it's not even funny)

  • inefficient abstracted programming models where two years down the road
    you notice that some abstraction wasn't very efficient, but now all
    your code depends on all the nice object models around it, and you
    cannot fix it without rewriting your app.

In other words, the only way to do good, efficient, and system-level and portable C++ ends up to limit yourself to all the things that are basically available in C. And limiting your project to C means that people don't screw that up, and also means that you get a lot of programmers that do actually understand low-level issues and don't screw things up with any idiotic "object model" crap.

So to answer your question any project where performance really mattters is suitable to written in C if you're so inclined.

link|flag
vote up 2 vote down

C compilers are easier to implement than C++ compilers

link|flag
That's an understatement :). I'm not sure it answers the question though. – quark Aug 20 at 0:01
vote up 5 vote down

C is also a language whose specification can (more or less) be described in detail in a fairly slim volume. When I meet a competent C programmer, I can be reasonably sure that she or he is familiar with 90% (or more) of the features of the language.

Compare and contrast to C++, where I'd guess that a large number of people developing in it don't even know about, much less use, a huge percentage of the language features. On the one hand, that means the language has lots of power and flexibility. On the other hand, it means that for any given C++ project there's more likely to be code that's going to be using some feature that a nontrivial number of developers have no idea how to use.

It's hard to overrate simplicity.

link|flag
vote up 0 vote down

Some have asked for a real-life project written in C and C++.

TrustLeap G-WAN is a Web Application Server which is faster (in user-mode) than IIS 7.0 (in the kernel). G-WAN ANSI C89 ('edit & play') scripts are 5x faster than ASP.Net C#.

G-WAN is up to 38x faster than Apache. G-WAN is up to 25x faster than Nginx.

G-WAN was started in C++ and then converted to C because of the '++' overhead. The gain was not only in footprint (currently 106 KB), but also in performances (~180%).

If you want to know what makes C++ so bad, just try virtual inheritance and virtual functions, and then compare the machine code générated by the C++ compiler with a clean C implementation of the same features (the C++ code is twice larger -and slower).

Conclusion: if you are targeting performances then you can use C++ as long as you write C code compiled with a C++ compiler.

In my humble opinion, Linus is a programmer that make systems work, and Bjarne is a programmer that uses the systems created by programmers like Linus.

There should be no surprise that system users are less technically inclined than system engineers.

link|flag
1  
I have a hard time going along with the comment that Bjarne is less "technically inclined" than Linus simply because one wrote a kernel and one wrote a language spec. On the contrary, I would argue that Bjarne had the much more difficult job. – San Jacinto Sep 11 at 12:27
vote up 0 vote down

Best I remember, if you want to develop device drivers on Windows you had to use C. The dev kit didn't support C++. (This may have changed.)

link|flag
vote up 1 vote down

Some other answers have mentioned that C is good for embedded programming because resources are limited. One reason why C is better in embedded environments is because you have a better sense of memory usage by data structures. When a C++ class get instantiated, it's hard to tell how large that object will be because of inheritance. This problem can be mitigated by limiting class hierarchies to be only a few deep. C++ templates also cause a similar problem. Heavy usage of templates can really increase the footprint of the executable. Just because these features aren't in C doesn't mean that you won't get similar memory problems. But, if you do, it's a little easier to track down where memory is being used.

link|flag
vote up 1 vote down

Jacinto,

If only Bjarne had done something that made sense, my comment would have been less severe.

But C++ is "not a better C", it's a drama -and Bjarne himself has several times recognized it:

http://g-wan.ch/en%5Fcpp.html

  • Pierre.
link|flag
vote up 1 vote down

There are certain cases where it makes sense to use C, such as writing device drivers or kernel modules. A lot of people argue that C's simpler feature-set leads to a much simpler, maintainable code base. But honestly, I get the opposite impression when it comes to large projects. I simply can't imagine writing a large project (>100K lines of code) in straight C these days.

If you actually spend time reading a lot of C source code, especially for large projects, you invariably find that one way or another the designers end up reimplementing C++ features such as virtual functions, inheritance, templates, etc., using wacky macro tricks, function pointers, preprocessor token concatenation or what have you. The fact is, its simply harder to reuse code in C because you don't have the facilities of object-oriented or generic programming at hand, and so you either have to copy and paste code, or use macro tricks to emulate these facilities. To say that this is more maintainable than modern C++ code is insane.

link|flag

Your Answer

Get an OpenID
or

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