1
vote
3answers
194 views

Converting an int to char using printf

I'm just wondering if following is the right way to convert int to display it as a char #include <stdio.h> int main() { int x = 500; printf("%hhd\n", x); } Also, from above I wonder if ...
5
votes
2answers
1k views

Printf long long int in C with GCC?

How do I printf long long int and also unsigned long long int in C99 using GCC? I have searched the other posts which suggest to use %lld but it gives these warnings: warning#1: unknown ...
13
votes
1answer
577 views

C99 printf formatters vs C++11 user-defined-literals

This code: #define __STDC_FORMAT_MACROS #include <inttypes.h> #include <stdio.h> #include <stdlib.h> #include <stdint.h> int main(int argc,char **argv) { uint64_t ...
8
votes
4answers
4k views

printf conversion specifier for _Bool?

With printf(), I can use %hhu for unsigned char, %hi for a short int, %zu for a size_t, %tx for a ptrdiff_t, etc. What conversion format specifier do I use for a _Bool? Does one exist in the ...
2
votes
3answers
229 views

Find out field length of “%f” format in sprintf

So deep inside a library I need a function which allocates a string, writes a provided floating point number to the string with %f format, and returns it. snprintf() returns the number of characters ...
2
votes
1answer
105 views

Leading zeros default behaviour with ISO C99 printf (“%Nd”)?

I've just spotted the following in the C99 ISO standard, 7.19.6.1 The fprintf function, subsection 6, detailing the conversion flags, specifically the 0 flag: 0: d, i, o, u, x, X, a, A, e, E, f, ...
3
votes
4answers
488 views

printf/fprintf maximum size according to c99

The C99 standard says: The number of characters that can be produced by any single conversion shall be at least 4095 Does it mean that the maximum size is 4095 if yes why its says "at least"?
19
votes
4answers
3k views

Good introduction to <inttypes.h>

I want to recommend the use of <inttypes.h> to someone doing printf with mixed 32/64 bit builds. I tried to Google an introduction or tutorial page with a few examples and usage guidelines, but ...
2
votes
4answers
206 views

Is there a general-purpose printf-ish routine defined in any C standard

In many C libraries, there is a printf-style routine which is something like the following: int __vgprintf(void *info, (void)(*print_function(void*, char)), const char *format, va_list params); ...
5
votes
3answers
833 views

size limit of printf conversion specification

printf conversion specifications are % followed by flags, width, precision, length modifier and conversion specifier. Is there practical limit to size of a conversion specification? I.e. %s is 2 ...
16
votes
8answers
9k views

What's the proper use of printf to display pointers padded with 0s

In C, I'd like to use printf to display pointers, and so that they line up properly, I'd like to pad them with 0s. My guess was that the proper way to do this was: printf("%016p", ptr); This works, ...
8
votes
5answers
3k views

Why weren't new (bit width specific) printf() format option strings adoped as part of C99?

While researching how to do cross-platform printf() format strings in C (that is, taking into account the number of bits I expect each integer argument to printf() should be) I ran across this section ...