this post was submitted on 02 Dec 2023
10 points (100.0% liked)

C Programming Language

4 readers
2 users here now

Welcome to the C community!

C is quirky, flawed, and an enormous success.
... When I read commentary about suggestions for where C should go, I often think back and give thanks that it wasn't developed under the advice of a worldwide crowd.
... The only way to learn a new programming language is by writing programs in it.

ยฉ Dennis Ritchie

๐ŸŒ https://en.cppreference.com/w/c

founded 1 year ago
MODERATORS
 

Hey, so I've been searching the web for a while for some popular applications that use C. All that I can find so far is, Git, Vim, Linux, and Unix. I also know the Windows kernel uses it a little bit, but that's it. Does anyone know some popular apps that use C? Doesn't have to be programming related, just an actual app that's written in C? Sorry if this question sounds redundant or anything.

top 8 comments
sorted by: hot top controversial new old
[โ€“] FlapKap@feddit.dk 5 points 10 months ago

Many of the calculation heavy python libraries like numpy are partially written in C

[โ€“] lysdexic@programming.dev 4 points 10 months ago

I dare say anything from the GNOME project.

[โ€“] vithigar@lemmy.ca 3 points 10 months ago (1 children)

Lua was built with C, and exposes some of C's standard libraries in its scripting.

[โ€“] mrkite@programming.dev 2 points 10 months ago
[โ€“] jaidyn999@lemm.ee 3 points 10 months ago* (last edited 10 months ago) (1 children)

Just about every language is written in C. Even GW-BASIC was written in C (most BASIC interpreters were written in assembly code at the time).

When all the code was being rewritten for Y2K, C was used because it was really the only language that was portable at the time, you could write the program on a PC, and then compile and configure it on a mainframe, or vice versa.

A more pertinent question would be what isn't wriiten in C.

Critical software, like interfaces, machine operation or database systems, are generally not written in C. That's because C code can be dense and obscure. If the original programmer retire or goes missing, and the system crashes, no one else may have a clue what they've actually coded. So a more explicable, higher level language is used and C is quarantined to use in system software where its power and access is useful.

load more comments (1 replies)
[โ€“] kamstrup@programming.dev 2 points 10 months ago* (last edited 10 months ago)

Postgres and MySQL/mariadb are all primarily written in C.

Contrary to what other posters here claim, most programming languages are not written in C, but are self hosted. Ie. written using themselves. This usually involves a small bootstrapping component written in C or something similar, but that is a minor part of a whole

[โ€“] anton@lemmy.blahaj.zone 1 points 7 months ago

If you want a large standalone app there's GIMP.

[โ€“] GammaGames 1 points 10 months ago