Tagged Questions
The kr-c tag has no wiki summary.
29
votes
11answers
3k views
I'm trying to learn C, but what I am missing? Wow, are these books old
I'm a physicist by degree, and I'm working in a computational biophysics lab where everything is written in old school C, so I've been furiously scrambling (with my mind) to keep up and learn some C. ...
14
votes
9answers
5k views
What are the major differences between ANSI C and K&R C?
The Wikipedia article on ANSI C says:
One of the aims of the ANSI C standardization process was to produce a superset of K&R C (the first published standard), incorporating many of the ...
10
votes
4answers
655 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 complete as you'd like, ...
9
votes
11answers
851 views
How did C look like before I was born?
Here is the question, How did C (K&R C) look like? The question is about the first ten or twenty years of C's life?
I know, well I heard them from a prof in my uni, that C didn't have the ...
8
votes
9answers
506 views
How exactly are data types represented in a computer?
I'm a beginning programmer reading K&R, and I feel as if the book assumes a lot of previous knowledge. One aspect that confuses me is the actual representation, or should I say existence, of ...
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
4answers
904 views
correctly declaring the main() function in ANSI C
The C standard say:
The function called at program startup
is named main. The implementation
declares no prototype for this
function. It shall be defined with a
return type of int and with ...
4
votes
4answers
128 views
I'm a little confused about arrays in a program in K&R2
After reading such good reviews about K&R2 I finally bought a copy. I've been working through the first chapter and I'm a little confused about a line in the digit and white space-counting ...
4
votes
5answers
489 views
K&R Exercise 1-21 - Mental incomprehension
The "impossible" K&R exercise.
"Write a program entab that replaces
strings of blanks by the minimum
number of tabs and blanks to achieve
the same spacing. Use the same tab
stops, say ...
4
votes
5answers
444 views
(K&R) At least the first 31 characters of an internal name are significant?
When taken literally, it makes sense, but what exactly does it mean to be a significant character of a variable name?
I'm a beginning learner of C using K&R. Here's a direct quote from the book:
...
4
votes
2answers
523 views
How to convert from K&R C to ANSI C?
I am trying to execute following code which is the 1988 entry of Obfuscated C Code Contest.
#define _ -F<00||--F-OO--;
int F=00,OO=00;main(){F_OO();printf("%1.3f\n",4.*-F/OO/OO);}F_OO()
{
...
4
votes
3answers
513 views
I don't understand itoa() in K&R book
I am reading K&R; so far I'm doing well with it, but there is something in function itoa() which I don't understand. Here in itoa() they say they reverse the numbers themselves. For example 10 is 01 ...
4
votes
5answers
900 views
K&R Qsort example with Pointers and Arrays confusion
I find it difficult to understand the following snippet of code. I understand the pointer to function mannerism showed, but where I find confusion is in the indicated lines.
void qsort(void **v, int ...
3
votes
2answers
496 views
k&r exercise confusion with bit-operations
The exercise is:
Write a function setbits(x,p,n,y) that returns x with the n bits that begin at position p set to the rightmost n bits of y, leaving the other bits unchanged.
My attempt at a solution ...
2
votes
1answer
85 views
How to convert a K&R function declarartion to an ANSI function declaration automatically?
// K&R syntax
int foo(a, p)
int a;
char *p;
{
return 0;
}
// ANSI syntax
int foo(int a, char *p)
{
return 0;
}
As you see, in K&R style, the types of variables are declared ...
2
votes
2answers
173 views
Exercise 1-24 from K&R - Rudimentary Syntax Checking
The exercise reads "Write a program to check a C program for rudimentary syntax errors like unbalanced parentheses, brackets, and braces. Don't forget about quotes, both single and double, escape ...
2
votes
1answer
277 views
Function declaration: K&R vs ANSI
What are the difference between a K&R function declarartion and an ANSI function declaration?
2
votes
1answer
494 views
Learning C (via K&R) using xcode
I'm learning C with The C Programming Language (K&R).
Since I don't particularly want to bob back and forth between a text editor and running gcc, I've decided to use xcode as an IDE. So far, ...
2
votes
5answers
428 views
Writing into c-string
my code segfaults and I don't know why.
1 #include <stdio.h>
2
3 void overwrite(char str[], char x) {
4 int i;
5 for (i = 0; str[i] != '\0'; i++)
6 str[i] = x;
7 }
8
9 ...
2
votes
8answers
737 views
Help with custom getline() function
Can anyone explain to me why this isn't working?
#include <stdio.h>
#include <stdlib.h>
char *getline(int lim)
{
char c;
int i;
char *line;
line = malloc(sizeof(char) * ...
1
vote
2answers
152 views
Problem with example 1.5.2 in K&R book on C
I'm teaching myself C with K&R and am stumped by one of the examples in the book. I compile the code exactly as it is written in the example but it does not do what the authors say it will. The ...
1
vote
4answers
317 views
What has changed since “The C Programming Language”
My experience in C is mostly from second edition of The C Programming language which is a very old book. What has changed in C since it was released, what obsolete or deprecated functions should I ...
1
vote
1answer
95 views
Mixing data types results in heart output
I was fooling around with one of the sample programs in the K&R, and found that this
#include <stdio.h>
main()
{
double nc;
for (nc = 0; getchar() != EOF; ++nc)
;
...
1
vote
5answers
621 views
K&R C Exercise Help
I've been going through the K&R C Programming Language book and I'm stuck on Exercise 2-6 which reads:
Write a function setbits(x,p,n,y) that returns x with the n bits that begin at position p ...
1
vote
2answers
771 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
817 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
6answers
88 views
Section 1.8 of K & R - can't figure out why line “int power(int m, int n);” is included
I'm working through K & R to learn programming. Going well so far, but I'm unclear about the role of a line of code from section 1.8 (functions).
In section 1.8, the authors show you how to ...