4
votes
3answers
138 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' ? …
0
votes
7answers
141 views
SIGSEGV, (seemingly) caused by printf
First and foremost, apologies for any cross-posting. Hope I'm not repeating an issue here, but I was unable to find this elsewhere (via Google and Stack Overflow).
Here's the gist of the error. If I …
0
votes
4answers
128 views
Printf seems to mess the output of a simple C program
Hi there. I have some code to add fractions.
#include <stdio.h>
#include <stdlib.h>
struct frac
{
int enumerator;
int denominator;
};
typedef struct frac frac_t;
frac_t …
1
vote
3answers
89 views
printf modifying a string
Using printf to print "\4unix\5lancs\2ac\2uk\0" I find, instead of a print in the form of ♦unix♣lancs☻ac☻uk, I get garbage (♫ ,►E¦§Qh ↕).
I cannot find an explanation for this; I use the following …
0
votes
2answers
54 views
Simple formatting question in Java using printf
I have an array of 12 numbers
int ary2[] = {3,5,9,11,15,18,22,23,30,31,35,39};
I want to print the numbers out with 2 places for the number and a space between the numbers.
Example print out …
1
vote
2answers
70 views
Odd rounding problem using the ruby printf-format-specifier
Has anybody got any ideas on this one?
When we run:
printf("%.0f", 40.5)
On a windows box the return is "41" but on our production ubuntu server we're getting "40"
1
vote
3answers
51 views
How to format printf statement better so things always line up
I have this printf statement:
printf("name: %s\t"
"args: %s\t"
"value %d\t"
"arraysize %d\t"
"scope %d\n",
sp->name,
sp->args,
…
0
votes
3answers
51 views
How do you print two places exactly using zero-pad flag in a print statement
if wanted to make a this method print using zero pad how do you do so
int month, day;
public void printNumeric()
{
System.out.printf("month +"/" +day +" \n");
// i would like the month if it is …
1
vote
3answers
128 views
Weird result printing pointers as float in C
I know this is wrong and gcc will give you a warning about it, but why does it work (i.e. the numbers are printed correctly, with some rounding difference)?
int main() {
float *f = (float*) …
4
votes
3answers
230 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 …
1
vote
3answers
117 views
String formatting expressions (Python)
String formatting expressions:
'This is %d %s example!' % (1, 'nice')
String formatting method calls:
'This is {0} {1} example!'.format(1, 'nice')
I personally prefer the method calls (second …
0
votes
4answers
178 views
Inconsistent results from printf with long long int?
struct DummyStruct{
unsigned long long std;
int type;
};
DummyStruct d;
d.std = 100;
d.type = 10;
/// buggy printf, unsigned long long to int conversion is buggy.
…
4
votes
8answers
99 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...
0
votes
1answer
56 views
Printf and hex values
So, I have a value of type __be16 (2 bytes). In hex, the value is represented as 0x0800 or 2048 in decimal. (16^2 * 8)
So, when I printf this; I do this:
printf("%04X", value); //__be16 value;
…
3
votes
5answers
227 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
