How are string literals represented internally by compilers?296 (6/20/2009 3:45:46 AM) comp.compilers I don't remember reading about how string literals are represented in any of the books I have. Until I go back and scour those for the info (assuming it is there), I'll ask here. How are string literals represe... Tony
C++'s Intricate Object Model825 (6/10/2009 5:27:42 AM) comp.lang.c++ From the lowest level, things are complex in C++. Does anyone in their right mind think that the following is what aspiring programmers need to endure (?): A. Standard layout type. B. Trivial class. C. POD. O... Tony
Why I love C251 (6/1/2009 5:10:21 AM) comp.lang.c I was going to post this with nothing in the body but then people would think (not that I care what people think) that I actually love C and am just confused. I hate C. And all ya C-lovers, don't cliche back ... Tony
C++ stuff I can't talk about here1229 (5/30/2009 4:31:55 AM) comp.lang.c++ Well there's the object model: "C++ers" (circa 2009, not language invention time (I'm letting the mentioned latterS off the hook)) don't get it. They blindly accept the C++ object model (read, thery're "virtu... Tony
"Hi, my name is C. ..."144 (5/8/2009 1:42:50 AM) comp.lang.c "I can be tailored to an n-bit platform. I am backward-compatible to the time of Mark Antony. Basically, since I was born thousands of years ago, my "staying power" speaks for itself. I am C and thou shalt no... Tony
Default function generation by compiler unnecessary?1094 (4/22/2009 6:28:48 PM) comp.lang.c++.moderated Is the default function generation for class objects necessary for some reason? It seems easier to just not generate anything unless it is specifically declared rather than to generate by default and then requi... Tony
I love kathy036 (3/29/2009 8:39:31 AM) comp.lang.c++ I was battling gestapo then, I don't just love Kathy, I care about her. She knows who I am. ... Tony
C++: Job Security?034 (3/29/2009 4:17:17 AM) comp.lang.c++ When someone suggests that creating alternatives to the golden calf is nothing more than "job security", I tend to think that someone is dropping leaflet bombs. Afraid of alternative libraries? Interesting. (... Tony
C++ stuff I can't talk about here1229 (5/30/2009 4:31:55 AM) comp.lang.c++ Well there's the object model: "C++ers" (circa 2009, not language invention time (I'm letting the mentioned latterS off the hook)) don't get it. They blindly accept the C++ object model (read, thery're "virtu... tony422(386)
Why I love C251 (6/1/2009 5:10:21 AM) comp.lang.c I was going to post this with nothing in the body but then people would think (not that I care what people think) that I actually love C and am just confused. I hate C. And all ya C-lovers, don't cliche back ... tony422(386)
How to allow just one instance from c++ application exe?954 (6/9/2009 7:11:59 PM) comp.lang.c++ How to allow just one instance to be running from c++ application exe?! More details: Platform: windows, but I prefer a cross-platform solution... If the user ran the exe and there is another instance already... magdy.pro(4)
C++'s Intricate Object Model825 (6/10/2009 5:27:42 AM) comp.lang.c++ From the lowest level, things are complex in C++. Does anyone in their right mind think that the following is what aspiring programmers need to endure (?): A. Standard layout type. B. Trivial class. C. POD. O... tony422(386)
Is there any good tui library in C++ under Windows?863 (6/12/2009 5:10:45 AM) comp.lang.c++ I want to write a text user interface for my program. That means I will print out something for user, and user will choose which step he wants to run. Now I am just using cout and cin to output and input. It ... waterlin1(18)
ISO recommendations for hash table lib3344 (6/12/2009 4:23:30 PM) comp.lang.c Can someone recommend a decent hash table library? I know about the functions in search.h (hsearch, etc.), but I need to be able to have multiple hash tables simultaneously, so this is out. TIA! kynn P.S... no.email5(299)
Who calls main() (OT, OS/C specific)832 (6/17/2009 7:28:35 PM) comp.lang.c I was wondering if anyone out there can point me in the right direction, and tell me which newsgroup I can go to where my question can be answered. I do realize that my question may be off-topic, and is definit... mazwolfe(69)
micro-optimization question4734 (6/23/2009 10:26:51 PM) comp.lang.c Hello I have question about using a signed and unsigned int data types. In a typical for loop like: int i; for(i=0;i<n;i++); If I used an unsigned int instead of an int, a difference of how many instructions... Cross