2
votes
5answers
113 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
68 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 …
2
votes
4answers
62 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 …
3
votes
5answers
175 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
159 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 …
1
vote
6answers
159 views
printf just before a delay doesn’t work in C
Hi!
Does anyone know why if i put a printf just before a delay it waits until the delay is finished before it prints de message?
Code1 with sleep():
int main (void)
{
printf …
0
votes
4answers
98 views
wrapper printf function that filters according to user preferences
My program writes to a log and to stdout. Every message, however, has a certain priority and the user specifies in Preferences which priorities go to which stream (log or stdout). …
0
votes
1answer
143 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 …
0
votes
3answers
110 views
What Is “\t%.10g\n”
Hello,
I'm new at Bison, but in C/C++ no and at this time of development and regular expressions i never heard something like this, only the \n that's used for a new line, but i …
2
votes
3answers
128 views
Why do I get a trailing ‘1’ after Perl’s printf output?
When I implement the code below I get the correct dates:
10/05/2008
10/05/2009
When I use printf instead of sprintf, I get the following:
10/05/200910/05/20081
1
Any ideas on …
1
vote
5answers
166 views
awk and printf in bash
Hi,
I am trying to get the rounded number of the average load in the past 5 mins. So here goes my command:
uptime | awk -F, '{print $5}'|printf "%.0f\n"
It seems incorrect as …
0
votes
10answers
290 views
I’m new to C, can someone explain why the size of this string can change?
I have never really done much C but am starting to play around with it. I am writing little snippets like the one below to try to understand the usage and behaviour of key construc …
2
votes
1answer
30 views
how can I put a breakpoint on “something is printed to the terminal” in gdb?
I would like to know from where inside a huge application a certain message is printed. The application is so big and old that it uses all conceivable ways of printing text to the …
2
votes
4answers
165 views
Printing chars and their ASCII-code in C
How do I print a char and its equivalent ASCII value in C?
0
votes
1answer
102 views
printf seems to be ignoring string precision
So, I'm a bit stymied. According to man 3 printf on my system, the string format "%5s" should use the specified precision to limit the number of characters printed from the string …
