Skip to content

Instantly share code, notes, and snippets.

@Christophosaurus
Forked from 7etsuo/7etsuo-printf.c
Created September 12, 2024 12:49
Show Gist options
  • Save Christophosaurus/a3993f7deda31c09109320ddbeef4c16 to your computer and use it in GitHub Desktop.
Save Christophosaurus/a3993f7deda31c09109320ddbeef4c16 to your computer and use it in GitHub Desktop.
printf cheatsheet
┌──────────────────────────────────────────────────────────────────────────────────────────────────────────┬──────────────────────────────────────────────────────────────────────────
│ printf Format Specifiers │
│ ┌──────────┬──────────────────────────────────────────────────┬───────────────────────────────────────┐ │/** printf format specifiers
│ │ Specifier│Description │ Example Output │ │ * ███ ▄████████ ███ ▄████████ ███ █▄ ▄██████▄
│ ├──────────┼──────────────────────────────────────────────────┼───────────────────────────────────────┤ │ *▀█████████▄ ███ ███ ▀█████████▄ ███ ███ ███ ███ ███ ███
│ │ %d │Signed decimal integer │ printf("%d", 42); // 42 │ │ * ▀███▀▀██ ███ █▀ ▀███▀▀██ ███ █▀ ███ ███ ███ ███
│ │ %i │Signed decimal integer (same as %d) │ printf("%i", 42); // 42 │ │ * ███ ▀ ▄███▄▄▄ ███ ▀ ███ ███ ███ ███ ███
│ │ %u │Unsigned decimal integer │ printf("%u", 42); // 42 │ │ * ███ ▀▀███▀▀▀ ███ ▀███████████ ███ ███ ███ ███
│ │ %x │Unsigned hexadecimal integer (lowercas) │ printf("%x", 42); // 2a │ │ * ███ ███ █▄ ███ ███ ███ ███ ███ ███
│ │ %X │Unsigned hexadecimal integer (uppercas) │ printf("%X", 42); // 2A │ │ * ███ ███ ███ ███ ▄█ ███ ███ ███ ███ ███
│ │ %o │Unsigned octal integer │ printf("%o", 42); // 52 │ │ * ▄████▀ ██████████ ▄████▀ ▄████████▀ ████████▀ ▀██████▀
│ │ %f │Decimal floating-point │ printf("%f", 3.14159); // 3.141590 │ │ *
│ │ %e │Scientific notation (lowercase) │ printf("%e", 314.159); // 3.141590e+02│ │ * https://www.x.com/7etsuo
│ │ %E │Scientific notation (uppercase) │ printf("%E", 314.159); // 3.141590E+02│ │ */
│ │ %g │Shortest representation (%f or %e) │ printf("%g", 3.14); // 3.14 │ │
│ │ %G │Shortest representation (%f or %E) │ printf("%G", 3.14); // 3.14 │ │ ''---. .-. .--,;._
│ │ %c │Single character │ printf("%c", 'A'); // A │ │ ' `-\ \-' ./|\\ `'-.
│ │ %s │String of characters │ printf("%s", "Hello"); // Hello │ │ .-----,| |--'/ | \\ \
│ │ %p │Pointer address │ printf("%p", ptr); // 0x7ffee4b78e0c │ │ / | | | / | \\ /
│ │ %% │Literal % character │ printf("%%"); // % │ │ | | | / | \`'`
│ └──────────┴──────────────────────────────────────────────────┴───────────────────────────────────────┘ │ ) | | | /\ / ,,
│ Flags │ / ;| | `-' `'` \`-.
│ ┌──────────┬──────────────────────────────────────────────────┬───────────────────────────────────────┐ │ / / | | ,' | \
│ │Flag │Description │ Example Output │ │ \_.' / ; | .-'-.,',' | '.
│ ├──────────┼──────────────────────────────────────────────────┼───────────────────────────────────────┤ │ ,_.' ,-' ; ) )/| | |
│ │- │Left-justify within the given field width │ printf("%-10d", 42); // '42 ' │ │ ,' \ __ ,'' ''`. _| |--,.
│ │+ │Forces a sign (+ or -) for numbers │ printf("%+d", 42); // +42 │ │ / `. ,',./ .-.-. \.--. / _) _,'--. )
│ │0 │Pad with leading zeros │ printf("%05d", 42); // 00042 │ │ | ---..`.._| | /__|__\ ,-. \ |`/ ( `--. _)
│ │ │Print a space before positive numbers │ printf("% d", 42); // 42 │ │ \ `. '\_; ((o|o)) ,' | \<_, `'-, )
│ │# │Alternate form (useful with o, x, X, f, etc.) │ p intf("%#x", 42); // 0x2a │ │ `. \ ,-''.--'--.''-. _,' \ __. '.
│ └──────────┴──────────────────────────────────────────────────┴───────────────────────────────────────┘ │ `. | / \ / \ / ,' `._)
│ Width and Precision │ \ ,' | .' `-.-' '. | / /
│ ┌──────────┬──────────────────────────────────────────────────┬───────────────────────────────────────┐ │ / _, | | | | |../ ,'
│ │Syntax │Description │ Example Output │ │ .' /'--'._,,_ \ \ | / .' /
│ ├──────────┼──────────────────────────────────────────────────┼───────────────────────────────────────┤ │ (_._ '''-._ `.\ `. | ,' ,' ___/
│ │%10d │Minimum width of 10 characters │ printf("%10d", 42); // ' 42' │ │ `-. \ '. `'-'-'` ,'-'`
│ │%.2f │Precision for floating-point numbers (2 decimals) │ printf("%.2f", 3.14159); // 3.14 │ │ \ `. \ |`'-...-'`
│ │%10.2f │Minimum width and precision │ printf("%10.2f", 3.14159); // ' 3.14' │ │ | ; \ | / /
│ └──────────┴──────────────────────────────────────────────────┴───────────────────────────────────────┘ │ | | | / ,' .' ____
│ Length Modifiers │ (_/.'-' ( `. ,' `'._
│ ┌──────────┬──────────────────────────────────────────────────┬───────────────────────────────────────┐ │ `. `-' --.. )
│ │ Modifier │Description │ Example Output │ │ `. .--. `\
│ ├───────── ┼──────────────────────────────────────────────────┼───────────────────────────────────────┤ │ `.__.-\ \ `\_)
│ │ h │Short integer │ printf("%hd", (short)42); // 42 │ │ ( /mx
│ │ l │Long integer │ printf("%ld", 42L); // 42 │ │ `
│ │ ll │Long long integer │ printf("%lld", 42LL); // 42 │ │
│ │ z │Size type (for size_t) │ printf("%zu", (size_t)42); // 42 │ │
│ │ L │Long double (for %Lf) │ printf("%Lf", 3.14159L); // 3.141590 │ │
│ └──────────┴──────────────────────────────────────────────────┴───────────────────────────────────────┘ │
└──────────────────────────────────────────────────────────────────────────────────────────────────────────┘
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment