Tagged Questions
0
votes
2answers
47 views
Formatting a string based on Input and predefined values
I have 26 values's that i am considering as Special Symbol and are as with special delimeter "$" the value's can be from $A to $Z.
Same time i have a predefined template as:
I have $A,$B,$C.....
...
-5
votes
1answer
54 views
Formatting SprintF in C
The question i have with the code below, is where i have used sprintf, i want it to insert a formatted int, because the client then picks up the data and pulls out data according to char array. So the ...
0
votes
3answers
65 views
How to read and print one csv line of input? [closed]
I am suppose to simply to read, parse, and print the contends of one valid input line. Can someone explain how am I suppose to do that? The format that is outputted is:
ID, HH:MM:SS, TYPE, VALUE
...
0
votes
3answers
64 views
How to read in a file into a structure in C when the file contains special characters to control the process
I've been trying for hours to read in this file into a structure which I want to use in my C programming project. I can't get it to work properly with the structure.
Here's the file I want to read ...
2
votes
2answers
74 views
C convert hex values “\xHH” to integer
I want to convert a hex number from a file to an int.
The string looks like this:
\0\0\x05\xa0
This should be 1440. If I try:
int i = '\x05'
I get 5.
But if I do the same with \xa0 I get -96.
Any ...
1
vote
3answers
146 views
Formatting printf and extra string print?
I have 2 issues, the first one is, I can't get my lines to match up in the print out of my array. I can only get the first line to match up!
void printStructs(struct student *list, int size){
int j ...
1
vote
2answers
170 views
How can I make scanf() with multiple inputs ignore the others?
scanf("%s %d %s %d",word1,&num1,word2,&num2);
so when the user inputs "quit", its supposed to stop asking for the other 3 inputs. however it asks me to input another "quit" probably because ...
1
vote
2answers
164 views
C formatted string - How to add leading zeros to float and int values? [duplicate]
Possible Duplicate:
Extra leading zeros when printing float using printf?
I'm trying to get the output of this C program to have placeholder zeros, as the output of this program will be ...
0
votes
3answers
305 views
C language how to format a double to 2 digits after the decimal point? [duplicate]
Possible Duplicate:
Limit floating point precision?
In C language, I need to format a number to 2 digits after the decimal point from user input
For example:
float x ;
printf("Enter ...
32
votes
2answers
5k views
why does %d stand for Integer?
I know this doesn't sound productive, but I'm looking for a way to remember all of the formatting codes for printf calls. %s, %p, %f are all obvious, but I can't understand where %d comes from. Is %i ...
1
vote
2answers
193 views
printf for C %f leaving 6 0's after decimal
int main ()
{
float MarysAge;
MarysAge = (int) 19.32;
printf("Mary is %f years old\n", MarysAge);
return 0;
}
Why does this output have the 6 0's at the end? Trying to help a friend but, I don't ...
0
votes
1answer
83 views
How to remove a character from output string by *printf() function family using formats?
How to remove a character from output string by *printf() function family using formats? it's possible?
from macros this macros:
char *s =
g_strdup_printf(
"insert into foo(name,serie,"
...
1
vote
3answers
102 views
C Output formatting issues
I have some problems on the formatting of my output in C.
Please see the image below for my output
I want my output to be as follow
Enter word: KayaK
Kayak is a palindrome.
// palindrome.c
...
0
votes
2answers
253 views
How to format system time in C?
I'm working on an element of a program that fetches the system time in (24 hour time) hours and minutes, and formats it as HH:MM and stores it in an array. The minutes also have to be incremented by ...
0
votes
1answer
109 views
formatting matrix in C
I'm writing a program that uses a mean filter to smooth an image. right now I'm not using an actual image, just integers and my issue is that I can get the average of the left hand corner number, the ...
3
votes
2answers
427 views
Printing leading zeroes for hexadecimal in C
I am trying to print the results of an MD5 hash to the console and it is working for the most part. To ensure correctness, I used an online MD5 calculator to compare results. Most of the characters ...
1
vote
2answers
530 views
How can I format currency with commas in C?
I'm looking to format a Long Float as currency in C. I would like to place a dollar sign at the beginning, commas iterating every third digit before decimal, and a dot immediately before decimal. So ...
1
vote
1answer
156 views
Printing this floating point format
Observe the above image, the remaining loan amount being displayed in a pretty unique way. It is basically a floating point value. When it is having no floating precision it is displayed as $3000 ...
0
votes
3answers
81 views
How can I change the format of a file´s permissions?
Well, I´m doing and ls program in C and I have a problem. I have to show the file permissions with this format:
drwxr-xr-x
But I get the permissions as a int because this return me this value as a ...
0
votes
1answer
123 views
Vim: Getting gq Not to Displace `**' in Comment Block
Suppose I have a nice comment block, such as the one below
/*
** This is a nice comment block. Displace the `**'s and I will eat your nose! Also, here is a long line of text clearly longer than the ...
0
votes
1answer
49 views
c HEX Store,Display & Manipulate
This is how i am delcaring my array of integers
int registers[16];
And this is how im filling my array
void fill_registers()
{
registers[0] = 0 ; registers[1] = 0x11111111; registers[2] = ...
2
votes
4answers
233 views
printf apostrophe is replaced by Æ in C
This is part of my first comp sci assignment, we are writing a C program that evaluates several equations. Here is the code that is giving the wonky result:
// 1. Newton’s Second Law of Motion
...
0
votes
1answer
29 views
How to format strings into a lined-up format in C?
How can I format string to ensure that it is shown as:
ID:12 SIZE:235235235235
ID:1455 SIZE:335235
Instead of:
ID:12 SIZE:235235235235
ID:1455 SIZE:335235
...
3
votes
3answers
490 views
How to format a long adding thousands separator on Arduino
I'm developing a project on Arduino that parses some JSON data from a remote web API displaying it on a 16x2 LCD.
I would like to format a long parsed with TextFinder adding the thousands separator ...
0
votes
3answers
151 views
C segfault, not sure what's going down
I have the following code, and on line 68, I'm getting a format error.
stack.c:68: warning: format ‘%e’ expects type ‘float *’, but argument 3 has type ‘double *’
On the input push 4, it gets a ...
4
votes
7answers
465 views
Formatting a string into multiple lines of a specific length in C/C++
Is there a common C/C++ library (or common technique) for taking a line(s) of input text and splitting the words into separate lines. Where each line of output has a max width and words are not split ...
0
votes
0answers
450 views
C program that will generate a table of compound interest factors [closed]
How to write a complete C program that will generate a table of compound interest factors, F/P, where
F/P =(1 + i/100)n
In this formula
F represents the future value of a given sum of money,
P ...
2
votes
2answers
2k views
printf precision
I am writing a program in C and I have several printf statements for debugging. Is there a way to change the precision for a HEX output on printf? Example. I have 0xFFF but I want it to print out ...
4
votes
2answers
666 views
How can I find the number of terminal columns from a C/C++ program? [duplicate]
Possible Duplicate:
Getting terminal width in C?
On Linux and OS X, my shell reports $COLUMNS has the width of the terminal window -- and resizing the window will adjust this shell ...
1
vote
2answers
350 views
Formatting issue with fgets in a function
I am asking for input from a functions using fgets. I keep getting a annoying bug, in which the program skips right over the input and goes to input of the second variable. I have no idea what seems ...
1
vote
2answers
779 views
reading hex data from file fscanf format compile time warning
I'm reading some data from a file. The format is stated tobe
ASCII text with UNIX-style
line-endings, a series of 32-bit
signed integers in hexadecimal.
e.g
08000000
I'm using fscanf to ...
3
votes
3answers
91 views
Proper formatting for --help output
I'm writing a command-line program in C, and I'd like to implement a --help option to show the usual stuff like available options and what they do, and usage examples.
Is there a proper method for ...
0
votes
1answer
103 views
Changing the date format in C
My structure variable temp_var[0].trade_date has the value of 20100614. I need to format this date like 6/14/2010. Could anybody please help me put the date in this format?
2
votes
1answer
914 views
string format for intptr_t and uintptr_t
What is the string format for intptr_t and uintptr_t which is valid for both the 32 and 64 bit architecture .
EDIT
warning: format ‘%x’ expects type ‘unsigned int’, but argument 2 has type "AAA"
...
1
vote
3answers
219 views
How to add formatting data to text output from c program?
I have a command-line C program (DOS/Windows) which produces a hex dump of several records as a .txt file.
I am looking for a way to emphasize certain values without resorting to ascii-art.
Is ...
5
votes
1answer
600 views
How do I pad a printf to take account of negative signs and variable length numbers?
I'm trying to output some numbers in a log file and I want to pad a load of floats via the printf function to produce:
058.0
020.0
038.0
-050.0
800.0
150.0
100.0
Currently I'm doing this:
...
4
votes
1answer
4k views
C - 'printf' with leading zeros
I have a floating point number such as 4917.24. I'd like to print it to always have five characters before the decimal point, with leading zeros, then three digits after the decimal place.
I tried ...
0
votes
6answers
807 views
How to add minus sign in front of a string? (In C)
My string length is constant but actual data length will vary as like below,
" 1,54" // will be displayed as "- 1,54"
"123456789012,12" // will be dsiplayed as "- 123456789012,12"
0
votes
3answers
1k views
Printf Numerical Right Justify
I'm trying to format a number that has a value from 0 to 9,999. I would like the 2 most significant digits to always display, i.e.
5000 -> 50
0000 -> 00
If either of the least significant digits ...
2
votes
3answers
630 views
How to produce Euro symbol in C?
Please give me a sample C program to produce the euro sysmbol. I'm using windows keyboard and program needs to be compiled in linux.
Update: Actually I need Euro symbol as a string and need to ...
0
votes
0answers
224 views
looking for tool that format and escape long text string to valid c char* [closed]
Hello all
i looking for a tool that takes long text string to valid const char *fmt
for example i want to set char* with this java script as string:
http://code.google.com/p/swfobject/link text
in ...
1
vote
1answer
110 views
Formatting very large numbers in C
I have to output a large number, a double precision number using the following code:
fprintf(outFile," %11.0f %d O(g(n))",factorialNotRecursive(index,factCount),factValue);
now the ...
6
votes
5answers
336 views
Meaning of lone curly-braced code blocks in C
I've come across a bit of code that contains a couple code blocks, delineated with curly braces {}. There is no line before the code blocks marking them as part of if statements, function ...
3
votes
2answers
501 views
Print a leading '+' for positive numbers in printf
I've a temperature conversion program as an assignment, which I've completed. The program has many printf statements in it which print the temperature. Now the negative temperatures are printed the ...
1
vote
3answers
189 views
How to tell printf() to get the value from the untyped (or byte-sequence) buffer
I have a buffer of raw values, say, void* buffer or better, char* buffer - a raw byte stream, for example, read from a file. I'd like the bytes in the buffer to be represented and displayed in several ...
2
votes
8answers
327 views
Why does this program produce the wrong output?
int main()
{
double i=4;
printf("%d",i);
return 0;
}
Can anybody tell me why this program gives output of 0?
3
votes
2answers
665 views
How to format unsigned int into 8 digit hexadecimal number?
I want to format an unsigned int to an 8 digit long string with leading zeroes.
This is what I have so far:
unsigned int number = 260291273;
char output[9];
sprintf(output, "%x", number);
...
1
vote
1answer
211 views
Printf with Double Formatting Question
I've got the following printf statement:
printf("val=%-4.2lf", val);
However, val is never padded with spaces so the space taken up by val is different if there are 3 or 4 digits before the ...
2
votes
1answer
263 views
Simple C number formatting question
This a very simple c question.
Is there a way to format a float for printf so that it has xx SIGNIFICANT decimals?
So I'm not talking about, say, %5.3f float, but if I had
float x=0.00001899383
...
1
vote
4answers
105 views
Reason behind the solution to the question
What is the output of the following and what's the reason behind this?
main()
{
printf("%%%%");
}
The answer is "%%", but I don't know why.