8
votes
7answers
484 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);
5
votes
4answers
324 views
C : Printing big numbers
Take the following :
#include <stdio.h>
main() {
unsigned long long verybig = 285212672;
printf("Without variable : %llu\n", 285212672);
printf("With variable …
5
votes
3answers
246 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 …
5
votes
1answer
376 views
Only show decimal point if floating point component is not .00 sprintf/printf
I am pretty formatting a floating point number but want it to appear as an integer if there is no relevant floating point number.
I.e.
1.20 -> 1.2x
1.78 -> 1.78x
0.80 -> 0.8x
2. …
5
votes
8answers
397 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", …
5
votes
7answers
603 views
How to print out dash or dot using fprintf/printf?
As of now I'm using below line to print with out dot's
fprintf( stdout, "%-40s[%d]", tag, data);
I'm expecting the output would be something like following,
Number of cards... …
5
votes
5answers
510 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 …
5
votes
4answers
2k views
Display number with leading zeros.
Given:
a = 1
b = 10
c = 100
I want to display a leading zero for all numbers with less than 2 digits.
Essentially displaying
01
10
100
5
votes
6answers
4k 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 …
4
votes
3answers
194 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 followin …
4
votes
8answers
91 views
In C how do I print filename of file that is redirected as input in shell
$cc a.c
$./a.out < inpfilename
I want to print inpfilename on stdout.
How do I do that ?
Thanks for the help in advance...
4
votes
2answers
117 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
System.out.printf("%s\t …
4
votes
4answers
242 views
In F#, How do I customize output of a custom type using printf?
I've read through a good chunk of Expert F# and am working on building an actual application. While debugging, I've grown accustomed to passing fsi commands like this to make thin …
4
votes
5answers
3k views
Javascript 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 seperat …
4
votes
4answers
565 views
How will you print a character without library functions in C ?
If for example I should not use standard library functions like printf, putchar then how can I print a character to the screen easily. Is there any easy way of doing it. I dont kno …
