0
votes
2answers
35 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
48 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"
0
votes
3answers
49 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
118 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*) …
0
votes
1answer
52 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;
…
1
vote
3answers
109 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 …
3
votes
1answer
236 views
What does floating point error -1.#J mean?
Recently, sometimes (rarely) when we export data from our application, the export log contains float values that look like "-1.#J". I haven't been able to reproduce it so I don't know what the float …
0
votes
4answers
876 views
Integer ASCII value to character in BASH using printf
Character to value works:
$ printf "%d\n" \'A
65
$
I have two questions, the first one is most important:
How do I take 65 and turn it into A?
\'A converts an ASCII character to its value using …
4
votes
3answers
200 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 …
0
votes
4answers
169 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.
…
0
votes
2answers
178 views
Call C function from Assembly
Hello!
I will work on a big Assembly project but now just started to learn this new language. I try to make some really simple examples like ones for c++ in highschool (sum two numbers, is a number …
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...
1
vote
3answers
114 views
Using Printf to display on serial port of an ARM microcontroller
I would like to use printf to diplay text on a serial port of an ARM microcontroller. I am unable to do so. Any help is appreciated.
My init_serial looks like this
void init_serial (void)
{
PINSEL0 …
1
vote
4answers
117 views
C Programming: Forward variable argument list.
Hi, I'm trying to write a function that accepts a variable number of parameters like printf, does some stuff, then passes the variable list to printf. I'm not sure how to do this, because it seems …
2
votes
5answers
193 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
