0
votes
2answers
33 views
Printing out hex values of a char* array in C gives odd values for binary input.
Here's an odd problem that's been stumping me for a bit.
The program is written in C89, and it reads a file into a char* array 16 bytes at a time (using fread and a size of sizeof …
0
votes
1answer
60 views
sprintf() to truncate and not round a float to x decimal places?
Hi folks,
When calculating a golf handicap differential you are supposed to truncate the answer to 1 decimal place without rounding. No idea why but...
I know how to do this usi …
0
votes
5answers
101 views
What is the minimum buffer size for sprintf with %g?
The problem is to statically allocate a buffer large enough to fit a printed double, formatted with %g at maximum precision. This seems like a simple enough task, bu I'm having tr …
4
votes
2answers
116 views
Why does Perl’s sprintf not round floating point numbers correctly?
I was out looking for the rounding convention used by Perl's built-in function sprintf.
I was thinking that it does a normal rounding (e.g. ROUND_HALF_UP as in Java's rounding mod …
0
votes
4answers
78 views
Passing variable argument list to sprintf()
I would like to write a function that (amongst other things) accepts a variable number of arguments and then passes them to sprintf().
For example:
<?php
function some_func($v …
0
votes
10answers
295 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
3answers
134 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 …
0
votes
4answers
151 views
Sprintf in Ruby
Sort of a quick question. I'm writing:
puts "%.3f %.4f %.5f" % [3.998877, 3.998877, 3.998877]
and get the following output:
3.999 3.9989 3.99888
sprintf simply rounds the num …
1
vote
6answers
254 views
sprintf_s with a buffer too small
The following code causes an error and kills my application. It makes sense as the buffer is only 10 bytes long and the text is 22 bytes long (buffer overflow).
char buffer[10]; …
4
votes
5answers
3k views
Javascript printf/string.format
I'm looking for a good Javascript equivalent of the C/PHP printf() or for C#/Java programmers, String.Format() (IFormatProvider for .NET).
My basic requirement is thousand seperat …
0
votes
8answers
223 views
sprintf() gone crazy
I need some help with this, since it baffles me in my C program
I have 2 strings(base, and path)
BASE: /home/steve/cps730
PATH: /page2.html
this is how printf reads then just b …
12
votes
10answers
343 views
Why use sprintf function in PHP?
I am trying to learn more about the PHP function sprintf() but php.net did not help me much as I am still cofused, why would you want to use it?
Take a look at my example below. …
0
votes
4answers
205 views
Microsoft _stprintf warning
Why I get the following warning for the following code :)
Code:
_stprintf(m_szFileNamePath,_T("%s"),strFileName);
warning C4996: '_swprintf': swprintf has been changed to co …
2
votes
4answers
229 views
Is sprintf(buffer, “%s […]”, buffer, […]) safe?
I saw use of this pattern to concatenate onto a string in some code I was working on:
sprintf(buffer, "%s <input type='file' name='%s' />\r\n", buffer, id);
sprintf(buffer, …
3
votes
4answers
239 views
Printing the value of a float to 2 decimal places
I have a float with the value of e.g 57.400002. I use sprintf_s to display the value on my GUI.
sprintf_s(xPosition, 19, "%f", xPositionValue);
How can I format the float so it …
