Tagged Questions

printf is a C function that prints formatted strings. Other languages have also added a printf function.

learn more… | top users | synonyms

325
votes
107answers
153k views

Printing 1 to 1000 without loop or conditionals [closed]

Task: Print numbers from 1 to 1000 without using any loop or conditional statements. Don't just write the printf() or cout statement 1000 times. How would you do that using C or C++?
160
votes
16answers
98k views

JavaScript equivalent to printf/string.format

I'm looking for a good JavaScript equivalent of the C/PHP printf() or for C#/Java programmers, String.Format() (IFormatProvider for .NET). My basic requirement is thousand separator format for ...
63
votes
13answers
3k views

How does this program work?

#include <stdio.h> int main() { float a = 1234.5f; printf("%d\n", a); return 0; } It displays a 0!! How is that possible? What is the reasoning? I have deliberately put a %d in ...
35
votes
23answers
63k views

Is there a printf converter to print in binary format?

I can print with printf as a hex or octal number. Is there a format tag to print as binary, or arbitrary base? I am running gcc. printf("%d %x %o\n", 10, 10, 10); //prints "10 A 12\n" ...
33
votes
14answers
56k views

How do you printf an unsigned long long int?

#include <stdio.h>int main() { unsigned long long int num = 285212672; //FYI: fits in 29 bits int normalInt = 5; printf("My number is %d bytes wide and its value is %ul. A normal number ...
26
votes
8answers
14k views

Why does printf not flush after the call unless a newline is in the format string? (in C)

Why does printf not flush after the call unless a newline is in the format string? (in C) Is this POSIX behavior? How might I have printf immediately flush every time? Thanks, Chenz
20
votes
6answers
8k views

Clean code to printf size_t in C++ (or: Nearest equivalent of C99's %z in C++)

I have some C++ code that prints a size_t: size_t a; printf("%lu", a); I'd like this to compile without warnings on both 32- and 64-bit architectures. If this were C99, I could use printf("%z", ...
16
votes
1answer
161 views

Why is 0 (zero) printed without leading “0x” with C printf format “%#x”?

Background: I have a number of scripts that parse log files looking for hex numbers by finding the leading "0x". Our embedded C library changed to a new printf. The new printf is more standards ...
16
votes
1answer
514 views

How does Haskell printf work?

Haskell's type safety is second to none only to dependently-typed languages. But there is some deep magic going on with Text.Printf that seems rather type-wonky. > printf "%d\n" 3 3 > printf ...
16
votes
1answer
2k views

How do I print a non-null-terminated string using printf?

How can I print a non-null-terminated string using printf, assuming that I know the length of the string at runtime?
14
votes
4answers
931 views

Is there any alternative for printf?

I have to create a software that must work on several *nix platforms (Linux, AIX, ...). I need to handle internationalization and my translation strings are in the following form: "Hi %1, you are ...
14
votes
6answers
11k views

Avoid trailing zeroes in printf()

I keep stumbling on the format specifiers for the printf() family of functions. What I want is to be able to print a double (or float) with a maximum given number of digits after the decimal point. ...
11
votes
3answers
179 views

Why cast is needed in printf?

To print a number of type off_t it was recommended to use the following piece of code: off_t a; printf("%llu\n", (unsigned long long)a); Why the format string is not enough? What will be the ...
11
votes
3answers
267 views

what does “%.*s” mean in printf in c

I got a code snippet in which there is a printf("%.*s\n") what does the %.*s mean?
11
votes
3answers
1k views

Using printf with a non-null terminated string

Suppose you have a string which is NOT null terminated and you know its exact size, so how can you print that string with printf in C? I recall such method but I can not find out know...
11
votes
5answers
1k views

Passing too many arguments to printf

Any C programmer who's been working for more than a week has encountered crashes that result from calling printf with more format specifiers than actual arguments, e.g.: printf("Gonna %s and %s, ...
11
votes
7answers
838 views

Quick C question - how to hide leading zero in printf

printf( "%8.2f" , .23 ); It outputs 0.23. How do I get it to simply output .23? Thanks.
11
votes
8answers
807 views

Are there any practical applications for the format %n in printf/scanf family?

int x; printf("hello %n World\n", &x); printf("%d\n", x);
11
votes
10answers
8k views

Printing leading 0's in C?

I'm trying to find a good way to print leading 0's, such as 01001 for a zipcode. While the number would be stored as 1001, what is a good way to do it? I thought of using either case statements/if ...
10
votes
3answers
152 views

Cout not printing number

Issue I'm getting no output from a simple cout, whereas a printf will always print the number: std::cout << variableuint8; // prints nothing printf("%u", variableuint8); // prints the number ...
10
votes
5answers
983 views

Getting different output with printf and cout - C++

I have a string I am trying to print. when I used cout, it outputs perfectly but using printf leaves it mangled. Here is the code: int main ( int argc, char *argv[] ) { // Check to make sure ...
10
votes
4answers
417 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 ...
10
votes
1answer
795 views

C complex number and printf

How to print ( with printf ) complex number? For example, if I have this code: #include <stdio.h> #include <complex.h> int main(void) { double complex dc1 = 3 + 2*I; double ...
10
votes
9answers
1k views

What is the use of %n format specifier in C?

What is the use of "%n" format specifier in C. Could anyone explain with an example. Thanks in advance.
10
votes
10answers
2k views

mixing cout and printf for faster output

After performing some tests I noticed that printf is much faster than cout. I know that it's implementation dependent, but on my Linux box printf is 8x faster. So my idea is to mix the two printing ...
10
votes
9answers
3k views

Cross platform format string for variables of type size_t?

On a cross platform c/c++ project (Win32, Linux, OSX), I need to use the *printf functions to print some variables of type size_t. In some environments size_t's are 8 bytes and on others they are 4. ...
9
votes
3answers
378 views

Does printf(“%x”,1) invoke undefined behavior?

According to the C standard (6.5.2.2 paragraph 6) If the expression that denotes the called function has a type that does not include a prototype, the integer promotions are performed on each ...
9
votes
3answers
890 views

Is there a free implementation of printf for .net?

The problems: I can't use string.Format, I have C style format strings; I can't call the native printf (no P/Invoke); I can't use http://www.codeproject.com/KB/printing/PrintfImplementationinCS.aspx ...
9
votes
3answers
192 views

is it possible to reproduce python's string interpolation in ocaml?

In python, one can use printf like formatting with the "%" operator: "i am %d years old" % 99 or "%s is %d years old" % ("bob", 101) Is there a way to get the same concise syntax in Ocaml, for ...
9
votes
10answers
2k views

How to escape the % sign in C's printf?

How do you escape the % sign when using printf in C? printf("hello\%"); /* not like this */
9
votes
3answers
3k views

In C can a long printf statement be broken up into multiple lines?

I have the following statement: printf("name: %s\targs: %s\tvalue %d\tarraysize %d\n", sp->name, sp->args, sp->value, sp->arraysize); I want to break it up. I tried the following but it doesn't ...
9
votes
7answers
5k views

How to pass variable number of arguments to printf/sprintf

I have a class that holds an "error" function that will format some text. I want to accept a variable number of arguments and then format them using printf. Example: class MyClass { public: ...
9
votes
6answers
12k views

C++: how to get fprintf results as a std::string w/o sprintf

I am working with an open-source UNIX tool that is implemented in C++, and I need to change some code to get it to do what I want. I would like to make the smallest possible change in hopes of getting ...
8
votes
1answer
684 views

C++ - gcc - how to create my own custom compile warnings similar to printf()?

apologies in advance if i use poor terminology. when i compile a C++ app under gdb and use printf() it gives me awesome warnings relating to the consistency of the format string and the arguments ...
8
votes
3answers
1k views

What's up with Java's “%n” in printf?

I'm reading Effective Java and it uses %n for the newline character everywhere. I have used \n rather successfully for newline in Java programs. Which is the 'correct' one? What's wrong with '\n' ? ...
8
votes
2answers
5k views

Java: Literal percent sign in printf statement

I'm trying to add an actual percent sign into a printf statement in Java and I'm getting the error: lab1.java:166: illegal escape character ...
8
votes
5answers
2k views

printf + uint_64 on Solaris 9?

I have some c(++) code that uses sprintf to convert a uint_64 to a string. This needs to be portable to both linux and Solaris. On linux we use %ju, but there does not appear to be any equivalent on ...
7
votes
2answers
95 views

Odd behavior when converting C strings to/from doubles

I'm having trouble understanding C's rules for what precision to assume when printing doubles, or when converting strings to doubles. The following program should illustrate my point: #include ...
7
votes
4answers
174 views

Binary representation in C

In C why is there no standard specifier to print a number in its binary format, sth like %b. Sure, one can write some functions /hacks to do this but I want to know why such a simple thing is not a ...
7
votes
2answers
107 views

Is it possible to print out only a certain section of a C-string, without making a separate substring?

Say I have the following: char* string = "Hello, how are you?"; Is it possible to print out only the last 5 bytes of this string? What about the first 5 bytes only? Is there some variation of ...
7
votes
4answers
16k views

How to printf “unsigned long” in C?

I can never understand how to print unsigned long datatype in C. Suppose boo is an unsigned long, then I try: printf("%lu\n", unsigned_boo) printf("%du\n", unsigned_boo) printf("%ud\n", ...
7
votes
5answers
279 views

Is this a correct syntax (c code found on wikipedia)?

I just found this code on wikipedia. Link: http://en.wikipedia.org/wiki/Sizeof#Use The code: /* the following code illustrates the use of sizeof * with variables and expressions (no parentheses ...
7
votes
3answers
1k views

printf anomaly after “fork()”

OS: Linux, Language: pure C I'm moving forward in learning C progpramming in general, and C programming under UNIX in a special case :D So, I detected a strange (as for me) behaviour of the printf() ...
7
votes
5answers
686 views

How does printf handle its arguments?

How does printf handle its arguments? I know that in C# I can use params keyword to do something similar but I can't get it done in C ?
7
votes
7answers
3k 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, ...
7
votes
5answers
1k 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 ...
7
votes
8answers
703 views

What should I use instead of printf in Perl?

I need to use some string replacement in Perl to ease translations, i.e. replace many print "Outputting " . $n . " numbers"; by something like printf ("Outputting %d numbers", $n); However, I'd ...
6
votes
1answer
131 views

Self reproducing program

main(a){printf(a="main(a){printf(a=%c%s%c,34,a,34);}",34,a,34);} How it is reproducing itself after compilation? What is the role of writing 34 in printf function Platform GCC UBUNTU 10.04
6
votes
6answers
181 views

C++ and printf - strange character output

I'm a complete newb to C++, but not to Java, C#, JavaScript, VB. I'm working with a default C++ console app from Visual Studio 2010. In trying to do a printf I get some strange characters. Not the ...
6
votes
2answers
132 views

C++ printf with %f but localized for the user's country

I'm using the following C++ syntax to output a floating point value on a Windows platform: printf("%.2f", 1.5); It works well if I run it on an English user account. My assumption was that if I run ...

1 2 3 4 5 15