pcre example to match an empty line231 (4/14/2011 11:49:00 AM) I have a script to match for the first blank line in the file I am trying to use a pcre pattern like '^\s*$' but this doesnt work Can someone please find where the code is wrong The code is here http://past... ramprasad.ap(40)
Copying an array to a similar struct1225 (4/13/2011 9:21:29 AM) Hello, I suppose the following code has undefined behavior? #include #include typedef unsigned long ULONG; struct msg { ULONG event; ULONG args[4]; }; void dispatch_msg(ULONG *argv, ... Noob
C and the future of computing148 (4/1/2011 4:13:05 AM) A new C Standard is on the horizon, and since the gestation period of a Standard is roughly that of six point three elephants it is perhaps not too soon to start thinking about the next one. What will computi... esosman2(2945)
ValArray728 (4/12/2011 1:10:09 PM) In the context of the C Containers library I am now implementing "ValArray" These containers store the basic numeric types (integers and floats) of the language. They support the basic operations that can be ... jacob31(874)
Have a nice day. #3 #2037 (4/12/2011 7:43:08 AM) The most sexiest collection of bollywood. just visit www.hottesthitsbollywood.blogspot.com www.bollywoodhotactresspicz.blogspot.com www.bollywoodhotphotoz.blogspot.com www.bollywoodhotactresswallpapers.blogspot... eaglebalti(110)
Does C99 have dependent types?251 (4/9/2011 10:41:23 PM) I was reading http://en.wikipedia.org/wiki/Dependent_type, and it made me think why they are missing C99 from that list. It seems to have dependent types: int i = 4; int a[i]; int (*p)[i] = &a; ... schaub.johannes(56)
A generic interface for numeric variables1125 (4/4/2011 3:39:06 PM) In C I can have a small set of numeric type variables: char, short, int and long (ignoring long long), and their unsigned counterpart. In one of my program, I have a lot of (about 200) numeric variables of diff... pozzugno(160)
Same structures, different names3231 (4/3/2011 8:10:59 PM) Hello, I have a situation where I have two structures that are identical except for the names. A simplified example: struct foo { unsigned long a; unsigned long b; }; struct bar { unsigned l... notavalid(48)
Have a nice day. #2 #3029 (4/11/2011 4:59:49 AM) Sale Sale Sale. Just visit the following link to buy computer accessories. You can buy computer accessories on reasonable prices. just visit http://www.onlineshoppingpk.blogspot.com ... eaglebalti(110)
How to determine Multibyte string length.444 (4/9/2011 10:44:20 PM) How to determine Multibyte string length? So that I can allocate memory size equal to mulibyte string length. I found there is mblen but it's only work for single character. any help wouldbe appreciated ... Owner1(57)