2 Challenges for the C Programmer in U...2450 (3/22/2010 6:29:40 AM) comp.lang.c If...then...else... A simple challenge. http://2600hertz.wordpress.com/2010/03/18/if-then-else/ http://2600hertz.wordpress.com/2010/03/18/if-then-else/ Here's the Mystery Spiral?? Can U code it in C??... http... 2.6kilohertz(1)
WHAT, MY X SERVER CRASHED!!!!!!3610 (4/11/2010 3:01:03 PM) comp.os.linux.advocacy "Ubuntu 9.10 Karmic Koala is a piece of shit!!"
http://invariabletruth.com/?p=80
--
PLEASE VISIT OUR HALL OF LINUX IDIOTS:
http://linuxidiots.blogspot.com/
... Clogwog
how to design a replacement for C++100156 (7/23/2010 3:45:22 PM) comp.lang.c++ Interesting article on why C++ development may be fading but it
will never go away: http://apenwarr.ca/log/?m=201007#22
Lynn
... Lynn
what is brainfuck?364 (1/21/2011 11:47:26 AM) comp.lang.c++ questa volta parlo in italiano
sono un poco rude
questo sarebbe un linguaggio "brainfuck"
; u32 __stdcall SpedisciNomeEdopoFile(u32* socket, u32 iFinestraHandle, u8*
StringNameFile)
; Anche se "String... io_x
function calls4280 (2/22/2011 11:41:21 AM) comp.lang.c++ Is an nonstatic member function call the same as an ordinary function call
(with a hidden parameter)?
Two people , namely James Kanze and Itaj Sherman have been trying to
persuade me that a call to a nonst... Paul
EMERGENCY! I LOST MY WINDOWS DRIVE4422 (5/9/2011 3:44:39 PM) comp.os.linux.advocacy I got a real problem here. I just installed Fedora 14 and when it aksed me if I wanted to use the entire disk for Linux I said yes. It gave me some weird error message but I said continue and Fedora unlike Ub... gpl_lover(3)
C programming in 201115447 (5/26/2011 3:27:38 AM) comp.lang.c Hi All, Many moons ago I cut C code for a living, primarily while maintaining a POP3 server that supported a wide range of OSs (Linux, *BSD, HPUX, VMS ...). I'm planning to polish the rust off my C skills and... dhgbayne(6)
Const reference passing in constructor423 (6/21/2011 12:39:24 PM) comp.lang.c++ Hi, I get a runtime error with the following code: #include using namespace std; class A { int n; public: A(); A(const int k); int getn() const { return n; }; }; A::A() : n(0) {}; A::A(const int k) ... rahul6362(5)
Blocking queue race condition?1541 (1/5/2012 6:06:04 AM) comp.lang.c++ I'm trying to implement a high performance blocking queue backed by a circular buffer on top of pthreads, semaphore.h and gcc atomic builtins. The queue needs to handle multiple simulataneous readers and write... andrew3888(270)