0
votes
1answer
44 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) …
1
vote
3answers
99 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 met …
4
votes
3answers
178 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 …
0
votes
4answers
162 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
89 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...
2
votes
5answers
147 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,
C …
1
vote
3answers
93 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_ser …
4
votes
2answers
105 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 …
1
vote
4answers
97 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, …
2
votes
5answers
133 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 …
0
votes
3answers
70 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("s …
0
votes
2answers
169 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 nu …
3
votes
5answers
225 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 …
1
vote
6answers
196 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",
"O …
2
votes
4answers
67 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 op …
