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 through it. Even though the syntax comes very easily, some of the exercises I have trouble solving, is it okay to skip a few of them? (3-3 is a very good example of a hard exercise) Or, should I try my best at solving them and should not move on until I have solved each exercise in a section correctly?

link|improve this question

Please elaborate which K&R you're talking about. Does it teach ANSI C syntax or does it still define functions like int mul(a, b) int a; int b; { return a * b; }? – Mike DeSimone Mar 27 '11 at 4:21
I have removed the C tag, as there is absolutely nothing to do with C in this question. – DeadMG Mar 27 '11 at 4:35
@GMan: That is indeed what I mean. – DeadMG Mar 27 '11 at 4:50
Its the newer one. DeadMG: The C tag is still here. – Dhaivat Pandya May 13 '11 at 21:51
feedback

closed as not a real question by André Caron, belisarius, N 1.1, Jeff Atwood Mar 27 '11 at 9:28

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

3 Answers

up vote 3 down vote accepted

There are two different types of function call syntaxes, standard syntax and K & R syntax. When you want to talk about something else, it is better not to just say "K&R" as it will confuse many into thinking you are talking about "K&R Syntax".

Now, if you want to skip a problem in your text book, it might be ok, or it might hurt you very much. It depends on why you are skipping the problem.

Skipping a problem because "it looks just like the other ten problems you just solved, and you know right away that you will not learn anything new by doing the problem" is skipping the problem for a good reason. You will likely not learn much by doing the problem.

Skipping a problem because it is hard and you are having a hard time doing the problem is skipping the problem for all the wrong reasons. You will learn more by doing the problem, and odds are good you are only skipping the problem because if you were forced to do the problem you would be challenged and learn something.

If you skip too many problems, eventually it becomes the same as skipping the entire book. At the end of the day, it doesn't matter if you read the book or if you skip the book; at the end of the day it matters if you can do the work:

There is a difference between reading about chairs and making a good chair. You need to read to know about the problems that others have had. You need to read to not make the mistakes others have made. However, all of that reading won't replace making a bunch of chairs.

The man who reads only can't use the tools to make a good chair because they lack practice. The man who makes chairs only can't make a good chair because he makes the common mistakes that others have made.

Skill in both are needed because the act of learning about something and the act of being good doing it are related but different skill.s

link|improve this answer
That reminds me of a CS professor I had which 'taught' us how to play piano by telling us which key was which and how to read treble/base clefs. Not quite the same as being a maestro. – helloworld922 Mar 27 '11 at 4:53
I did all of the problems, and I really feel like a learned a lot from that book. Thanks a lot! – Dhaivat Pandya May 13 '11 at 21:51
feedback

I would say it's all right to skip a few that you can see at a glance are too easy to be worth actually typing in an answer (but be careful -- there are often subtle details that you won't notice until you really write some code).

As for exercise 3-3, I guess it depends on whether you're dealing with K&R1 or K&R2. In K&R1, 3-3 is an itoa that handles the most negative number on two's complement correctly. I wouldn't call this terribly difficult. I'd probably do it by using an unsigned type internally. Their itoa already converts negatives to positives, and does the conversion on a positive number. The only trick, then, is converting a negative to an unsigned without overflow. It seems to me the obvious choice for this would be something like (UINT_MAX - (unsigned int)input) + 1;

If you're looking at K&R2, 3-3 is the expand function that converts something like "a-d" to "abcd". At least right off, this doesn't strike me as terribly difficult either. For the most part, you'd walk through the input string and copy the current character to the output string unless it was a '-'. If it is a dash, you execute a loop starting from one greater than the value of the previous character, and going up to one less than the value of the next character. Personally, I'd probably just treat a leading '-' (which is to be copied literally) as a special case, so I can keep the loop simple (if we see a '-' in the loop, we can always assume there's a previous character to start from ).

If I was going to write this, I'd add a parameter to specify the length of the output buffer, to prevent buffer overruns. Even with that addition, I'd be surprised if the code was more than a couple dozen lines). You might run into a fencepost error or two, but other than that it should be pretty straightforward.

link|improve this answer
feedback

Whether it's "okay" to skip some of the exercises is entirely up to you and your reasons for doing the exercises in the first place. It's completely okay if it's okay with you.

That said, if you're skipping a problem because you don't know how to solve it, well... that would seem to be missing the point of doing the exercises.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.