2
votes
2answers
71 views
Help With K&Rs Counting Chars Example
I'm working my way through K&R's 2nd edition, and I've been stumped with this seemingly simple example:
#include <stdio.h>
main(){
double c;
for(c = 0; ((getch …
4
votes
3answers
241 views
Beginner Doing K&R
Hi, I'm just starting programming and going through K&R to try and learn C. I've gotten to the section on command line arguments (5.10) but now I'm stumped. Every time I try …
6
votes
10answers
762 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, …
1
vote
7answers
280 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 …
