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?
|
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.
|
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:
| |||||
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 If you're looking at K&R2, 3-3 is the 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. | |||
|
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. | |||
|
feedback
|
int mul(a, b) int a; int b; { return a * b; }? – Mike DeSimone Mar 27 '11 at 4:21