Descrizione:
The C programming language. (Moderated)
|
|
|
In the matter of Herb Schildt
|
| |
[Hmm; I go away for a few days and he's still at it.] ...[...] ...Bwa-ha-ha-ha. (1) There's no such thing as "British libel law". (2) I probably know far more about the topic of libel than you do. See (3). (3) One of the most experienced and best-known QCs at the libel Bar has my personal mobile number in his phone and calls me for advice on Internet... altro »
|
|
Strange behaviour with switch-case
|
| |
...int main() { int sw = 22; switch(sw) { case 1: case 2: case 3: fprintf(stderr, "this is a %d\n", sw); break; xxxxx: fprintf(stderr, "this is something else\n"); break; } return 0; ...I suspected this code not to compile but it does compile and nothing... altro »
|
|
Arrays and Functions (how to clean up code)
|
| |
Hello, Apparently I have a strange way of writing C. For example, here is a short program showing how I use arrays in functions: ...void initialize(int mx, int meqn, double (*p_q)[meqn]); int main(void) { int mx = 20,i; int meqn = 3; int d1[20]; double q[mx][meqn]; double (*p_q)[meqn];... altro »
|
|
Basic question in binary tree node insertion
|
| |
I was looking at this function segment that inserts a node into a binary tree : void insert(Tree** pRoot, int n) { if (*pRoot != NULL) { if ((*pRoot)->val > n) insert(&((*pRoot)->left),n); else insert(&((*pRoot)->right),n); } else { Tree* new = (Tree *)malloc(sizeof(Tree*));... altro »
|
|
Request for Peter's List
|
| |
Mr. Seebach, I do not wish to post overmuch to comp.lang.c or comp.lang.c.moderated on the Schildt matter for these reasons: (1) I have a lot to say, and I say it well, about linkages of this issue to broader phenomena including negative politics and the philosophy of language, but this will clog the groups, intended as... altro »
|
|
In the matter of Herb Schildt
   
|
| |
My blog post at [link] summarizes my views and will be extended when I have the time with a detailed commentary on Peter Seebach's and Clive Feather's disorganized and nasty attacks on Herb. I will host a discussion of this article at my blog.... altro »
|
|
incorrect posting protocol
|
| |
...You should also be careful not to delete attribution lines. You quoted my response without mentioning that it was mine.
|
|
|