1
vote
5answers
344 views
how does this code from “The C Programming Language” work?
I'm reading "The C Programming Language (2nd ed.) and near the beginning, it has examples like this:
while((c = getchar()) != EOF)
if(c == '\n'){
++n1;
I can see how …
6
votes
10answers
760 views
K & R Exercise: My Code Works, But Feels Stinky; Advice for Cleanup?
I'm working on the K&R book. I've read farther ahead than I've done exercises, mostly for lack of time. I'm catching up, and have done almost all the exercises from chapter 1, …
4
votes
6answers
428 views
getchar() question
Hi, this is such a newbie question that I'm almost embarrassed to ask it :$ ... but anyway:
I've started reading "The C Programming Language" (K&R) and I have a doubt about th …
2
votes
7answers
623 views
Basic C Question
I am reading over the KR book, and am a little stuck.
What is wrong with the following?
void getInput(int* output) {
int c, i;
for(i=0; (c = getchar()) != '\n'; i++)
o …
5
votes
9answers
811 views
Hex to Decimal conversion [K&R exercise]
I'm learning C and I can't figure out one of the K&R exercises, the listing:
Exercise 2-3, Write the function
htoi(s), which converts a string of
hexadecimal digits (in …
9
votes
4answers
323 views
K&R Chapter 1 - Exercise 22 solution, what do you think?
I'm learning C from the k&r as a first language, and I just wanted to ask, if you thought this exercise was being solved the right way, I'm aware that it's probably not as comp …
4
votes
6answers
238 views
k&r C trouble
This is a quick slightly subjective question I need to ask. In order to become a proficient C programmer, I felt I'd learn C from the k&r. I find the book a little easygoing, …
4
votes
4answers
367 views
Help with K&R exercise: Multidimensional array into pointer array.
Exercise (5-9):
Rewrite the routines day_of_year with pointers instead of indexing.
static char daytab[2][13] = {
{0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
{ …
1
vote
7answers
279 views
K&R Exercise 2-4
I'm learning how to write programs in C using the k&r book (The C Programming Language) and I have a problem with one of the exercises. It's asking me to detect and remove a ch …
6
votes
6answers
967 views
C Programming Exercise from the K&R Book.
Any idea why the following code doesn't print the amount of characters in the input?
I've taken this straight from the K&R book. Learning C at the moment and this is really con …
5
votes
3answers
611 views
What’s a good example of register variable usage in C?
I'm reading through K&R and came to the small section on register variables, and was wondering if people here have some good examples of this put into practice.
From section 4 …
3
votes
3answers
279 views
What is the purpose of ungetc (or ungetch from K&R)?
Can anyone explain to me the purpose of ungetch?
This is from K&R chapter 4 where you create a Reverse Polish Calculator.
I've ran the program without the call to ungetch and …
0
votes
2answers
265 views
K&R Exercise 2-3 “Hex to int converter” Problem.
The program I wrote works in demographics consisting of only single Hexadecimal values. (Probably not the most elegant solution, but I'm a new programmer) My question is, how woul …
3
votes
8answers
316 views
How do I learn C?
I'm interested in learning C better. I have read K & R, and I have even done some simple C extension work in R and Python. What's a worthwhile project idea for doing somethin …
3
votes
4answers
252 views
Pointer type mismatch warning in example from K&R C
Duplicate (or near duplicate):
Problem compiling K&R example
Lately I have been working my way through the C Programming Language by K&R.
In section 5.11 they cover poin …
