Tagged Questions
The format-specifiers tag has no wiki summary.
33
votes
14answers
56k views
How do you printf an unsigned long long int?
#include <stdio.h>int main() { unsigned long long int num = 285212672; //FYI: fits in 29 bits int normalInt = 5; printf("My number is %d bytes wide and its value is %ul. A normal number ...
20
votes
8answers
15k views
How should I print types like off_t and size_t?
I'm trying to print types like off_t and size_t. What is the correct placeholder for printf() that is portable?
Or is there a completely different way to print those variables?
11
votes
3answers
208 views
Visual Studio format specifier for C# arrays?
In C++ I could do this, but I don't see how to do it in C#. Basically I want to use a format specifier in the Watch Window of my Visual Studio 2008 debugger to view only a slice or portion of an ...
10
votes
2answers
110 views
how can I remove zeros from exponent notation
I'm using exponential formatting to format a decimal number in C#.
For example if the number is
0.0001234567
Formatting with
(0.0000123456).ToString("E4");
Shows
1.2345E-004
How can I ...
9
votes
3answers
1k views
What does the %*s format specifier mean?
In some code that I have to maintain, I have seen a format specifier %*s . Can anybody tell me what this is and why it is used?
An example of its usage is like:
fprintf(outFile, "\n%*s", indent, ...
7
votes
5answers
1k views
Why weren't new (bit width specific) printf() format option strings adoped as part of C99?
While researching how to do cross-platform printf() format strings in C (that is, taking into account the number of bits I expect each integer argument to printf() should be) I ran across this section ...
5
votes
5answers
496 views
What is the purpose of the h and hh modifiers for printf?
Aside from %hn and %hhn (where the h or hh specifies the size of the pointed-to object), what is the point of the h and hh modifiers for printf format specifiers?
Due to default promotions which are ...
5
votes
2answers
229 views
C format specifier
While i am working ,somewhere inside the code i saw the following staements.
I am getting confused by the format specifier in sprintf
d_number = strtol( tmp_buf , (char **)NULL, 16);
memset( ...
5
votes
1answer
2k views
Platform independent size_t Format specifiers in c?
I want to print out a variable for type size_t in c but it appears that size_t is aliased to different variable types on different architextures. For example on one machine (64-bit) the following code ...
3
votes
4answers
65 views
Name PHP specifiers in printf() strings
Is there a way in PHP to name my specifiers like in Python?
I want this in PHP:
$foo = array('name' => 24);
printf("%(name)d", $foo);
I couldn't find nothing related on google or in the php ...
3
votes
3answers
255 views
Is there a format specifier that works with Boolean values?
I want to do something like this:
NSLog(@"You got: %x", booleanValue);
where x is the specifier. But I can't find one! I want to avoid:
if (booleanValue) {
NSLog(@"You got: YES");
}
else {
...
3
votes
6answers
629 views
what does the % % mean in java?
Im a PHP-programmer and wonder what this line means.
System.out.printf("exp(%.3f) is %.3f%n", x, Math.exp(x))
what does %.3f, %.3f%n and the comma x means?
2
votes
2answers
149 views
printf unknown specifier %S
I am trying to get a sample code working and it uses the following lines:
WCHAR cBuf[MAX_PATH];
GetSharedMem(cBuf, MAX_PATH);
printf("Child process read from shared memory: %S\n", cBuf);
...
2
votes
5answers
214 views
Escaping square bracket ] in sscanf
I want to scan lines like
"[25, 28] => 34"
I wrote a small program to test it out:
#include <cstdlib>
#include <iostream>
int main() {
char* line = "[25, 28] => 34";
...
2
votes
2answers
286 views
What does an 'F' in the Format specifier of printf mean?
What does %.8Ff format specifier in printf do?What does F mean?
1
vote
2answers
95 views
Correct use of format specifier to show up to three decimals if needed, otherwise zero decimals?
I've found %g to show only decimals if needed. If the number is whole, no trailing .000 is added, so thats good.
But in the case of for example 1.12345 I want it to short the answer to 1.123.
And in ...
1
vote
1answer
143 views
mingw printf size specification character h
Visual Studio has a size and distance specification chart that says I can do something like this, using the h prefix to specify single byte character string regardless of printf or wprintf:
int ...
1
vote
3answers
1k views
sprintf for unsigned _int64
I am having following code. output of second %d in sprintf is always shown as zero. I think i am specifying wrong specifiers. Can any one help me in getting write string with right values. And this ...
0
votes
6answers
54 views
C printf string specifier \t1?
I am reading a piece of C heap sorting code and encounter this:
do{
printf("\n\t\t1:INSERT\n");
printf("\n\t\t2:SEARCH\n");
printf("\n\t\t3:DELETE\n");
printf("\n\t\t1:DISPLAY\n");
...
0
votes
2answers
72 views
Python - fixed exponent in scientific notation?
Consider the following Python snippet:
for ix in [0.02, 0.2, 2, 20, 200, 2000]:
iss=str(ix) + "e9"
isf=float(iss)
print(iss + "\t=> " + ("%04.03e" % isf ) + " (" + str(isf) + ")")
It ...
0
votes
3answers
66 views
What does the %qx format specifier mean
In the following obj-c function, what does the %qx format specifier mean (I would imaging the question also holds for use with printf and co.)
+(NSString*)stringForHash:(uint64_t)hash
{
return ...
0
votes
0answers
177 views
How to write quarters on X-Axis labels in Telerik's RadChart?
I am using the Telerik's RadChart control that displays some time-based data on a chart. Timestamp is the X-axis dimension.
The control lets me set the label format for that axis, and that's the same ...
0
votes
1answer
116 views
ios format specifier: how to NSLog 0x%x in iOS 4.2
NSMutableArray *foo = [NSMutableArray arrayWithCapacity:12];
NSLog(@" foo is 0x%x", foo); // worked in XCode 4.0 to return the hex address of this variable
Now it gives compiler warning:
...
0
votes
4answers
136 views
Convert hex values to char array in C
I'm trying to implement a function which returns a string of hex values. I print the hex values out using this function:
void print_hex(unsigned char *hash, const hashid type) {
int i;
for ...
0
votes
1answer
324 views
scanf formatting string for hex with dashes
I'm trying to write a C function to parse a MAC address input, with either spaces, colons or dashes as separators. I've been looking into using %*[-:] to match multiple characters but it doesn't seem ...
0
votes
2answers
176 views
Is there a format specifier that always means char string with _tprintf?
When you build an app on Windows using TCHAR support %s in _tprintf() means char * string for Ansi builds and wchar_t * for Unicode builds while %S means the reverse.
But are there any format ...
0
votes
5answers
495 views
Scanf syntax - %6d and %-6d and %0d
What are the differences between using scanf with the following format specifiers, when the input being scanned is 123456 versus when it's 123:
%6d
%-6d
%0d
What are the differences in the output?
...
0
votes
1answer
223 views
NSDate from NSString
I have a string in the format "Fri Jul 09 17:57:44 +0000 2010" which I need to convert to an NSDate.
I have tried a few unsuccessful operations to convert this date, and was wondering if anyone could ...
0
votes
5answers
2k views
copying a short int to a char array
I have a short integer variable called s_int that holds value = 2
unsighed short s_int = 2;
I want to copy this number to a char array to the first and second position of a char array.
Let's say ...
0
votes
8answers
405 views
format specifier for short integer
I don't use correctly the format specifiers in C. A few lines of code:
int main()
{
char dest[]="stack";
unsigned short val = 500;
char c = 'a';
char* final = (char*) ...
0
votes
2answers
286 views
Alternate format specifiers for long long in C
Is there any other (alternative) format specifiers for long long in C other than %lld which can be safely used in scanf under gcc?
I am aware that %lld does it's job fine; I am just inquisitive :-)