comp.lang.c
http://groups-beta.google.com/group/comp.lang.c

Today's most active topics:

* do{..}while(0) macro substitutions - 12 new
  
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/c4667196cd7de262

* Standard network method - 12 new
 
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/2bea5d19695a85a1

* Recommended style - 8 new
 
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/d8499543f20ad6a5

* Whats the difference between the yahoo group and this google groups? - 7 new
 
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/83aca04b5a04eb97

* Coding standards - 7 new
 
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/45fff8e456da3b6e


Active Topics
-------------

printf - 1 new
--------------
...Come to think of it, I can even provide a direct link: [link] - Fri, Dec 31
2004 12:34 am
1 message, 1 author
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/e860a642872579b


do{..}while(0) macro substitutions - 12 new
-------------------------------------------
... [link] Now why don't *you* read the FAQ. Oh yes, I remember now, you are a
troll, that's why you don't read the FAQ. - Fri, Dec 31 2004 8:49 am
12 messages, 7 authors
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/c4667196cd7de262


Help with function-like macros - 3 new
--------------------------------------
On a project I'm working on, I ran across the following macros: /* assume s is
struct stream *, s->p is char, v is unit16_t or uint32_t */ ... v += *((s)->p++
) << 16; v += *((s)->p++) << 24; } I'm personally not fond of function-like 
macros and wanted to turn these into static inline functions, but I'm having 
trouble doing so because the - Thurs, Dec 30 2004 6:56 pm
3 messages, 2 authors
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/bbad03b65deae4cc


malloc error checking - 4 new
-----------------------------
Message supprimé par MesNews - Fri, Dec 31 2004 1:24 am
4 messages, 2 authors
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/d5a2302a7a8c9437


Recommended style - 8 new
-------------------------
E. Robert Tisdale wrote on 30/12/04 : ...Agreed. - Fri, Dec 31 2004 10:39 am
8 messages, 7 authors
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/d8499543f20ad6a5


tricky assignment statemenent - 3 new
-------------------------------------
Ike Naar wrote on 31/12/04 : ...Style preference: if (p != NULL) ...Huh! Gurus
know that. Simple programmers write simple things that show clearly the 
intention: p->next = q; p = p->next; (Well, I guess) - Fri, Dec 31 2004 10:45 
am
3 messages, 3 authors
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/45f0f3ca1bb5499f


Array of size zero! - 2 new
---------------------------
...an ...use ...objects - Fri, Dec 31 2004 3:58 am
2 messages, 1 author
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/fe0dba77d0e79868


Whats the difference between the yahoo group and this google groups? - 7 new
----------------------------------------------------------------------------
...Google has archives going back to November 1986. For example: [link] As you
can see this joins mid-thread and Google does not appear to have any archives 
from before this date. Nick. - Fri, Dec 31 2004 12:51 pm
7 messages, 4 authors
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/83aca04b5a04eb97


memcpy() Behaviour - 1 new
--------------------------
Thank you all for your time and replies...i think i have understood memcpy..
Ben pfaff reply is very helpful , thanx ben......jonathan Bartlett was right, 
i was confused on pointers and not on memcpy.anyways thank you all Greetings 
and Happy New Year.. Waqas ------------------------------------- "You laugh at
me because i am different, i laugh at you because you are - Fri, Dec 31 2004 5:
06 am
1 message, 1 author
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/23d0119aa9fea403


Is this standards compliant? - 1 new
------------------------------------
On Thu, 30 Dec 2004 18:44:22 GMT, Kenny McCormack ...If you write it with UL 
suffix instead of just L the warning should go away (and you'll get a correct 
warning if you try to assign it to a signed long). ...In some languages it 
would, because the compiler would start at the assignment and propagate the 
type to the expression (Algol and Pascal, I - Fri, Dec 31 2004 12:57 pm
1 message, 1 author
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/c99990be72a7f3fe


understand a large system in C - 1 new
--------------------------------------
...code). ...confuses ...I think the best way is to find someone who *is* 
familiar with the system and ping on them mercilessly until you've grokked 
enough to figure the rest out, or until they get fed up and write everything 
down just so you'll go away. Or, you can use find and grep and keep a lot of 
notes. - Fri, Dec 31 2004 7:51 am
1 message, 1 author
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/d32a54a75402d344


gcc: error: case label does not reduce to an integer constant - 1 new
---------------------------------------------------------------------
On Fri, 31 Dec 2004 02:17:28 GMT, in comp.lang.c , Keith Thompson ...x isn't a
value. Its a symbol. ...I should have defined my meaning in my original post. 
My mistake. - Fri, Dec 31 2004 3:52 pm
1 message, 1 author
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/fb0c6578b250322b


online video conferencing - 2 new
---------------------------------
 [link] - Live Video Conferencing System enables you to get close to your 
employees, customers and present yourself wherever you want with fully 
enhanced packed audio video facility. Our Online Video System provides the 
better audio and video support on internet on high bandwith. Please visit us 
at [link] for more information - Fri, Dec 31 2004 8:05 am
2 messages, 2 authors
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/95480d592c679372


Standard network method - 12 new
--------------------------------
Hi I'd like a way of communicating over a network that doesn't rely on vendor-
specific libraries, preferably that will work on both windows and linux (the 
ideal solution would be one that compiles on windows and linux, but the 
absolute ideal one would be one that also enables windows to communicate *with*
 linux in realtime, but that's a pipe dream as yet...) - Fri, Dec 31 2004 4:41
pm
12 messages, 10 authors
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/2bea5d19695a85a1


Coding standards - 7 new
------------------------
In article <[EMAIL PROTECTED]>, ... pc = 1==x? "one" : 2==x? 
"two" : 3==x? "three" : 4==x? "five" ; I find this nesting acceptable, even if
it goes on indefinitely. ...Groetjes Albert - Fri, Dec 31 2004 7:36 pm
7 messages, 4 authors
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/45fff8e456da3b6e


variadic arithmetic, boolean operators - 1 new
----------------------------------------------
(Note: C99 supports variadic macros, but C89 does not.) I'm pretty sure what 
I'm trying to do is impossible, but I'll ask here in case I'm missing 
something. I'm trying to define generic, variadic arithmetic and boolean 
operators. For example, product (2, sum (3, 4), 5); should expand to (2) * ((3)
 + (4)) * (5); - Sat, Jan 1 2005 5:54 am
1 message, 1 author
http://groups-beta.google.com/group/comp.lang.c/browse_thread/thread/df2b2c3ae2918784



==============================================================================

You received this message because you are subscribed to the Google
Groups "comp.lang.c" group.

To post to this group, send email to [EMAIL PROTECTED] or
visit http://groups-beta.google.com/group/comp.lang.c

To unsubscribe from this group, send email to
[EMAIL PROTECTED]

To change the way you get mail from this group, visit:
http://groups-beta.google.com/group/comp.lang.c/subscribe

To report abuse, send email explaining the problem to [EMAIL PROTECTED]

==============================================================================
Google Groups: http://groups-beta.google.com 

Reply via email to