Tagged Questions
Questions about or related to the book "The C Programming Language" (which is also known as K&R) by Brian Kernighan and Dennis Ritche.
7
votes
6answers
2k 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 confusing, looks to me ...
7
votes
9answers
1k 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, which is the ...
6
votes
7answers
386 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, difficult to ...
6
votes
3answers
3k 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.7 in K&R:
...
5
votes
7answers
1k views
Where does `getchar()` store the user input?
I've started reading "The C Programming Language" (K&R) and I have a doubt about the getchar() function.
For example this code:
#include <stdio.h>
main()
{
int c;
c = getchar();
...
5
votes
5answers
995 views
K&R: array of character pointers
On pg. 109 of K&R, we see:
void writelines(char *lineptr[], int nlines)
{
while (nlines -- > 0) printf("%s\n", *lineptr++);
}
I'm confused about what *lineptr++ does exactly. From my ...
5
votes
9answers
2k 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 (including an
...
4
votes
4answers
326 views
Does this small C program satisfy the K&R question?
This is not homework. I'm just trying to learn :)
I'm on to K&R's Exercise 1-18
Write a program to remove trailing blanks and tabs from each line of input, and to delete entirely blank lines.
...
4
votes
2answers
171 views
I need help understanding what Exercise 5-12 is asking for in the C Programming Language book
K&R C Programming Language: pg. 105
Extend entab and detab to accept the shorthand
entab -m +n
to mean tab stops every n columns, starting at column m.
entab replaces a number ...
4
votes
4answers
1k 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 pointers to functions ...
4
votes
8answers
594 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 something more substantial ...
3
votes
2answers
108 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
4answers
818 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},
{0, 31, 29, 31, 30, ...
2
votes
2answers
166 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
3answers
537 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 character in string ...
2
votes
7answers
807 views
Custom get line input function
I am reading over the K&R 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++)
output[i] = c; ...
1
vote
3answers
65 views
Returning a pointer to a struct
I came across a example returning a struct in 'C Programming Language' by Kernighan & Ritchie.
/* binsearch: find word in tab[0]...tab[n-1] */
struct key *binsearch(char *word, struct key *tab, ...
1
vote
2answers
275 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 ...
1
vote
4answers
115 views
Why won't this C program pick up escaped backslashes?
I'm doing K&R's Exercise 1-10
Write a program to copy its input to its output, replacing each tab by \t, each backspace by \b and each backslash by \\. This makes tabs and backspaces visible ...
1
vote
2answers
187 views
K&R Exercise 4-6 Problem thinking of a solution
In k&r we have managed to create an RPN.
The exercise now is to:
Add commands for handling variables, (It's easy to provide twenty-six variables with single letter names.) Add a variable for the ...
1
vote
4answers
181 views
Modify detab to accept list of tab stops
This is my version of detab, from this K&R exercise:
Modify detab to accept a list of tab stops as arguments. Use the default tab setting if there are no arguments.
#include <stdio.h>
...
1
vote
2answers
690 views
Stack vs. heap storage
This program sorts input lines lexicographically, and I've come to this exercise in K&R:
Rewrite readlines to store lines in an array supplied by main, rather than calling alloc to maintain ...
1
vote
4answers
631 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 this would work ...
1
vote
2answers
770 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 would I go about ...
1
vote
3answers
815 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 in my tests it ...
0
votes
2answers
146 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
3answers
148 views
difficulty in understanding c by k and r [closed]
As a c programming beginner "k and r" had waste a lot of my time and I feel this book is unable to explain its examples in depth.Can anyone suggest some better resource than k and r for learning c?
0
votes
2answers
57 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
1answer
116 views
C : Dynamically storing strings (of dynamic sizes!)?
Am I missing something incredibly simple? because I can't seem to find a reason why my code isn't storing strings dynamically. All I get are blank lines when I print them at the end. Its supposed to ...
0
votes
0answers
113 views
Want to Join K&R Study Group? [closed]
Someday I want to be a computer scientist. Right now I'm looking for a
few good men, women, girls, boys, cats, dogs, fish ... anybody ... anybody?
I've completed all the exercises in Chapter 1 of ...
-3
votes
1answer
179 views
K&R Exercise 5.17 Help with Understanding (Beginner) [closed]
Greetings, I'm struggling with the task 5.17 particularly with the way it solves task challenge. I have solution from Tondo's 'The C Answer Book' and I'm trying to figure how to sort fields within ...