Web Images Videos Maps News Shopping Gmail more »
Recently Visited Groups | Help | Sign in
Google Groups Home
comp . lang . c . moderated
This is a Usenet group - learn more
Find or start a Google Group about c.
Group info
Language: English
Group categories:
Computers > Programming
More group info »
Active older topics
66 new of 66 - Sep 21
23 new of 23 - Sep 16
8 new of 8 - Sep 15
11 new of 11 - Sep 14
16 new of 16 - Sep 12
8 new of 8 - Sep 12
19 new of 19 - Sep 12
3 new of 3 - Sep 11
3 new of 3 - Sep 11
30 new of 30 - Sep 11
Related Groups
Discussion about C.
High activity, Usenet
Discussion about C language standards.
Low activity, Usenet
Technical discussion of the C++ language. (Moderated)
Medium activity, Usenet
Discussions
View:  Topic list, Topic summary Topics 1 - 10 of 4511  Older »
Description: 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... more »
By Clive D.W. Feather  - Nov 6 - 2 new of 2 messages    

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... more »
By dragoncoder  - Nov 5 - 7 new of 7 messages    

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];... more »
By x  - Nov 2 - 2 new of 2 messages    

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*));... more »
By Indrajeet  - Oct 11 - 3 new of 3 messages    

why we require void func( void ** ) ? 
  Hi why we require void func( void ** ) ? Thanks Pallav Singh
By Pallav singh  - Oct 10 - 5 new of 5 messages    

"Flag" variables: Bit fields vs boolean set/test logic, performance implications 
  Folx, was wondering if you could comment on the following. One can code these and respective routines (set/reset and test) in a number of ways. A good overview is here: [link] Has anyone done any performance test on amd64 type system with a recent enough of a gcc compiler to compare the boolean bit magic vs... more »
By Rashid  - Oct 5 - 2 new of 2 messages    

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... more »
By spinoza1111  - Oct 4 - 1 new of 1 message    

How does the following assert work 
  782 ASSERT (Fisme(pArr) && "Non memory in array normalization");
By parag  - Oct 4 - 5 new of 5 messages    

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.... more »
By spinoza1111  - Sep 25 - 31 new of 31 messages    

incorrect posting protocol 
  ...You should also be careful not to delete attribution lines. You quoted my response without mentioning that it was mine.
By Keith Thompson  - Sep 15 - 2 new of 2 messages    

1 - 10 of 4511   « Newer | Older »

XML      
Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google