C99 is widely used!3248 (2/24/2010 12:37:38 PM) comp.lang.c One of the most often "arguments" against C99 in this group is that "There is no embedded system support", etc. A typical message is this one of "gwowen": gwowen a �crit : > On Feb 24, 11:05 am, Richard wro... jacob
C99 is not a failure (continued)2043 (2/10/2010 9:50:36 PM) comp.lang.c The most important argument of the people in this group trying to deny the importance of C99 is that "There are not enough C99 implementations" DID YOU KNOW? There is ONE (yes ONE) full implementation of C++... jacob
Container library (continued)2929 (12/25/2009 10:29:23 AM) comp.lang.c Any container will add *some* complexity and overhead to the data it stores. A container object in C will be never as fast as managing each individual datum by hand, i.e. giving to each datum an address and ma... jacob
Problem with gcc10449 (11/13/2009 9:38:19 PM) comp.lang.c When compiling with -Wall I always get the warning ../dictionary.c:156: warning: pointer targets in passing argument 1 to strcmp differ in signedness I alwyays use unsigned chars for my text data, since there ... jacob
Container library progress7339 (11/9/2009 2:37:32 PM) comp.lang.c The bitstring module is finished (modulo tests). It now compiles cleanly on linux and the few tests already in place give the same results. This finished I will start implementing the first of the associative ... jacob
New from the standards committee1037 (11/4/2009 8:15:11 PM) comp.lang.c Mr Lawrence Jones wrote in a message in this group ....the latest draft (N1401) now spells it out explicitly (and more restrictively): If any of the fields of the broken-down time contain values that are o... jacob
Buffer overflows and C A simple example528 (11/4/2009 5:38:13 PM) comp.lang.c Contrary to the opinion of many people, I am convinced that the problem in C is not the language itself, that I consider an excellent one, but the wrong use it is done of C by people that do not take care abo... jacob
Finding a bit string in another bitstring929 (10/30/2009 1:46:07 PM) comp.lang.c Here is a function to do the equivalent of strstr with bitstrings. The basic ideas is to prepare a table of shifted patterns, and compare bytes instead of bits, what makes things faster and easier. I would li... jacob
Shifting bits633 (10/27/2009 9:17:05 PM) comp.lang.c Given a bitstring of size siz (in bytes), shift it right by 1 bit. Return the bit that was shifted out static int Shift(char *p,size_t siz) { int carry; size_t i; carry = p[0]&1; p... jacob
Finding a bit sequence in another1432 (10/22/2009 9:21:04 PM) comp.lang.c Hi I am learning C, and to improve my skills, I am rewriting the STL in C. One of the functions I need to write is "Contains", that finds a sequence in another container, for instance, an easy one is strstr(s... jacob
OLE - link or embed?3361 (2/18/2010 5:11:07 PM) comp.lang.c When designing dynamic data structures (lists, stacks, trees, etc), one of the many choices open to us is one that was brought up in another thread recently - whether to link to existing data (what we might c... rjh(10789)
A container library for the C language14153 (6/25/2010 7:03:44 PM) comp.lang.c I have been talking about this since quite a long time. It is (maybe) time to offer the first release. The URL is: http://www.cs.virginia.edu/~lcc-win32/container.html There you can download a zip file conta... jacob31(869)
error1312 (4/13/2010 12:54:16 PM) comp.lang.c I received this error and can't figure it out so I thought I would post
it. This has to do with posix and I guess it would fit under standard C.
#include
#include
#include
#include
struct add... Bill
Catastrophic Windmill Failure147 (3/22/2010 8:48:26 PM) comp.lang.c watch this accident movie, a windmill crashed!!!
http://mind-blowing-videos.blogspot.com/2010/03/catastrophic-windmill-failure.html
... Aymen
Container library (continued) #27340 (3/16/2010 11:07:38 PM) comp.lang.c Data allocation strategies for containers can vary wildly, depending on the specific container and on the application. Environment considerations play also a major role: if there is enough RAM many things ca... jacob31(869)
Beginner's guide to MinGW?60186 (3/9/2010 9:51:53 PM) comp.lang.c Folks,
I know this isn't a C-language related question, but before I get into C, I
have to have a compiler.
In fact, I have been using DJGPP for many years, but I have recently
upgraded to a 64-bit CPU... MikeC
Has thought been given given to a cleaned up C? Possibly called C+.421510 (3/5/2010 5:56:08 PM) comp.lang.c Peter Van Der Linden in "Expert C Programming - Deep C Secrets" 1994
and I imagine others have pointed out some of C's idiosyncrasies.
Has thought been given given to a cleaned up C? Possibly called C+.
--
... Casey
C99 is widely used!3248 (2/24/2010 12:37:38 PM) comp.lang.c One of the most often "arguments" against C99 in this group is that "There is no embedded system support", etc. A typical message is this one of "gwowen": gwowen a �crit : > On Feb 24, 11:05 am, Richard wro... jacob24(973)
Scope of a variable declared in for loop7244 (2/23/2010 1:35:28 PM) comp.lang.c Hi, A)Is it possible to declare a variable inside for loop like for(int i=100;i>=0;i--); if yes what is the scope of that variable? B)if there is a for loop like below for(int i=0;int c = getchar();i++... kvvaysage(12)