vote up 3 vote down star

I was always curious what languages these pieces of software were written in?

  • Visual Studio
  • Microsoft Office
  • Adobe Acrobat
  • Google Chrome
  • Firefox
flag

This has 2 close votes. What's the reasoning? – Robert S. Jan 4 at 2:48
Not sure, people are close happy. – Simucal Jan 4 at 3:59
be glad its not been marked offensive for the non-.NET answers :) – gbjbaanb Jan 4 at 15:34

7 Answers

vote up 6 vote down check

According to The Programming Languages Beacon they are all written in C++.

Actually, it is easy to verify that Firefox and Chrome are indeed written in C++. They are open source projects.

link|flag
vote up -8 vote down

I believe they're all basically written in C.

link|flag
Firefox and Chrome are obviously written in C++, not C. Just check their source code which is freely available. – Nemanja Trifunovic Jan 4 at 1:10
Which is basically C. – Charlie Martin Jan 4 at 2:58
You could also say that they're all basically written in assembly language too, which wouldn't be strictly wrong. – Greg Hewgill Jan 4 at 10:02
C and C++ are two very different languages which share a common syntax. – Ferruccio Jan 4 at 12:58
I tend to use the term "C/C++" as a majority of C++ code is C with STL containers, wrapped in classes to make the codebase tidier. – gbjbaanb Jan 4 at 15:32
show 1 more comment
vote up 2 vote down

Visual Studio and Office are predominately written in C++, Office definitely is because MS released the office ribbon as a control... for MFC programmers only, kinda gives a big clue that the original ribbon comes from a MFC app.

Acrobat.. I'm not sure of, but I'd guess C/C++.

Chrome is a C++ app, as is Firefox - you can download the source for the latter and see for yourself!

link|flag
As an addendum, the next version of Visual Studio (2010) will be written in C#/WPF. – cletus Jan 4 at 1:15
AFAIK, the Office apps don't (and never did) use MFC. Also, the MFC ribbon was not taken from the Office code, it was developed by BCGSoft. See blogs.msdn.com/vcblog/archive/… – ChrisN Jan 4 at 1:23
Chromium is the OSS project which comprises the vast majority of the Chrome codebase and is equally available for download - dev.chromium.org/developers/how-tos/… – kronoz Jan 4 at 1:47
MFC Ribbon: ok, it is BCGSoft code. But Office is still written in C/C++. – gbjbaanb Jan 4 at 2:45
Parts of Office (Excel in particular) are written in ASM to provide better performance. – Technical Bard Jan 4 at 3:08
vote up 0 vote down

The last four are C++. I'd guess Visual Studio is too. Pretty much any major app of the age most of those are will be written in C++.

link|flag
vote up 4 vote down

Here's a cool graph showing a breakdown of Firefox's source lines of code (SLOC). Surprisingly, it contains several times as many JavaScript SLOC as C++.

There's a graph for Chromium too.

link|flag
Only 100k lines? I think that doesn't include the rendering engine, right? – Rauhotz Jan 4 at 1:15
Apparently not. pokes around. Good lord that's huge. ohloh.net/p/mozilla/analyses/latest – jleedev Jan 4 at 1:22
For comparison with Chromium, here's WebKit: ohloh.net/p/WebKit/analyses/latest – jleedev Jan 4 at 1:22
What's "Chromium"? – Argalatyr Jan 4 at 3:20
never thought web browsers are that big – Johannes Schaub - litb Jan 7 at 21:43
vote up 2 vote down

Firefox is written in a whole bunch of languages.

I think the following is right (but I wiki'd it, so it can be fixed if it's not)

  • The Gecko layout engine is written in C++.
  • The Javascript interpreter (SpiderMonkey/TraceMonkey) is written in C - possibly with some ASM to speed things up on some platforms.
  • The user interface is written in a combination of XUL and CSS (to be interpreted by Gecko), and Javascript.

XUL is Mozilla's user interface description language - an XML schema.

Then there's all the plugins. They often include shared libraries (DLLs on Windows). Firefox doesn't care what language was used to create the DLL - lots of languages can do it.

link|flag
vote up 0 vote down

I can't say for sure of course, but I think that a significant portion of Visual Studio might be written in .NET as well. Anyway, it has all these nice managed interfaces for integrating 3rd party products, so I'm guessing that there should be a fair portion of managed code on the other end too.

link|flag

Your Answer

Get an OpenID
or

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