3
votes
0answers
32 views

scanf format specifier to read zero or more characters from a set of characters

I need to be very strict in regard to the characters that can be in a read string. I have a series of whitespace followed by a character followed by a series of whitespace. Examples: " c ", "c" , "", ...
2
votes
1answer
40 views

sscanf usage - how to verify a completed scan vs an aborted scan

My database provides a textfile with opening and closing " to delimiter formulas. The set of formulas is very limited and will be easy to implement once identified. I try to use scanf to get the ...
1
vote
1answer
39 views

Is there a “null” printf code that doesn't print anything, used to skip a parameter?

If I want a program to have multiple text output formats, I could do something like this: const char *fmtDefault = "%u x %s ($%.2f each)\n"; const char *fmtMultiLine = "Qty: %3u\nItem: %s\nPrice per ...
4
votes
2answers
49 views

Printing int values with a user determined padding? [duplicate]

I'm pretty sure there's no way to do this, but I was wondering, so here goes... Say I get several int values from the user, and I know for a fact that the 1st value is the largest. Any way I can use ...
0
votes
2answers
49 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
56 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
66 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
75 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
149 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
175 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
169 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
319 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
196 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
256 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
110 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
432 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
537 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
235 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
467 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
672 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
351 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
788 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
92 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
104 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
922 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
220 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
611 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
811 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
632 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
111 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
506 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
192 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?

1 2