0
votes
3answers
40 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
116 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
50 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 …
4
votes
3answers
195 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
166 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
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
4answers
112 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
177 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
4
votes
2answers
120 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
…
1
vote
3answers
106 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 …
2
votes
5answers
142 views
How can I print a string to the console at specific coordinates in C++?
Hello,
I'm trying to print characters in the console at specified coordinates. Up to now I have been using the very ugly printf("\033[%d;%dH%s\n", 2, 2, "str"); But I just had to ask whether C++ had …
0
votes
3answers
75 views
Writing / Reading Value to an Array in C
I must be going insane. This is incredibly simple so I am apparently overlooking something:
Here is my code:
int salesarray[20];
scanf("%d",&sales_input);
printf("sales_input is …
2
votes
4answers
69 views
How do I get $(/bin/printf -6) to return -6 and not think -6 is an option.
I have a bash shell script which has the line:
g=$(/bin/printf ${i})
when ${i} contains something like -6, printf thinks its being passed an option. It does not recognize the option so produces an …
1
vote
6answers
201 views
C format specifier question
While I was working i came across a code which was written by somebody else.
i see a statement as ,
sprintf(o_params->o_file_name,
"%s_%s_%04.4d_%s_%s.ASC",
"OUTD", "RM", …
