12

For instance, I wanted to see how printf is written. I looked into the stdio.h file, but there, I could only find the function declaration, no definition.

top 4 comments
sorted by: hot top new old
[-] thomasdouwes@sopuli.xyz 11 points 2 months ago* (last edited 2 months ago)

There are multiple implementations, the one often found on linux is glibc, you can find the source code for that online. printf is going to be a small wrapper for vfprintf though, so that is where you will probably find what you are looking for

[-] akunohana@piefed.blahaj.zone 1 points 2 months ago
[-] avidya@programming.dev 4 points 2 months ago

Check out GLIBC, the standard libc implementation for GNU/Linux, or the easier to read, minimalist, alternative libc MUSL.

Bootlin, runs the Elixir Code Cross Referencer that lets you easily hop between files. For instance, Here is the code for printf in GLIBC.

[-] ghodawalaaman@programming.dev 1 points 2 months ago
this post was submitted on 06 Jun 2026
12 points (100.0% liked)

C Programming Language

1341 readers
3 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 3 years ago
MODERATORS