Tagged Questions

3
votes
2answers
116 views

K&R - Numerical sort of alpha characters?

What does it mean to numerically sort alpha characters in opposite of lexicographic, like in K&R 5-14 with option -n Regards
3
votes
5answers
2k views

C Programming Exercises [closed]

Possible Duplicate: Where can I find C coding exercises to practice? I am learning c programming language and i need some exercises resources to practice from.
2
votes
2answers
220 views

How to determine the ranges of floating-point types using direct computation?

I'm trying to solve exercise 2-1 from "The C Programming Language", 2nd edition, which asks to: "Write a program to determine the ranges of char, short, int, and long variables, both signed and ...
2
votes
7answers
517 views

Performance challenge: NAL Unit Wrapping

From what I've seen in the past, StackOverflow seems to like programming challenges, such as the fast char to string exercise problem which got dozens of responses. This is an optimization challenge: ...
1
vote
2answers
300 views

Histogram of the length of words exercise hint?

I'm learning C with "The C Programming Language" book, and I'm trying to solve exercise 1.13: "Write a program to print a histogram of the lengths of words in its input. It is easy to draw the ...
0
votes
3answers
127 views

Ways to improve the following code

I am learning C, and I finally solved the following exercise, after couple of hours of struggle: "Write a program that merges lines alternately from two files and writes the results to stdout. If one ...
0
votes
8answers
108 views

Why is the following program stuck in a loop?

I wrote a solution to an exercise that asks to write a program that acts as a simple "printing" calculator, and also detects division by zero and checks for unknown operators. The program works as ...
0
votes
2answers
160 views

K&R Exercise 1-20 - Need some clarification

I don't fully understand what the following exercise is asking: "Write a program detab that replaces tabs in the input with the proper number of blanks to space to the next tab stop. Assume a fixed ...
0
votes
2answers
58 views

K&R Task Exercise 5.17

Can someone explain what specifically needs to be done in exercise 5.17, what does it mean to sort within line, its field?
0
votes
3answers
295 views

K & R exercises? [closed]

I have spent most of time higher-level languages such as Java and Python (although I have worked with C in the past). Seeing that my C skills were quite rusty are picked up K&R and started working ...
0
votes
2answers
170 views

C homework - string loops replacements

I know it's a little unorthodox and will probably cost me some downvotes, but since it's due in 1 hour and I have no idea where to begin I thought I'd ask you guys. Basically I'm presented with a ...
0
votes
2answers
401 views

The C programming language 2. ed. question

I'm reading the well known book "The C programming Language, 2nd edition" and there is one exercise that I'm stuck with. I can't figure out what exactly needs to be done, so I would like for someone ...