hi well i know the procedure to compile the c/c++ code in windows but i dont have an idea how does it proceed in GNU/Linux. the general format of the code as i...
Thanks for the link. Here are the relevant portions: CListCtrl& GetListCtrl( ) const; CListCtrl& theCtrl = GetListCtrl(); I'll ignore the "const" modifier for...
... ./a.out You can tell gcc the name of the output file: gcc -o <output> filename.c I do recommend you learn how to use Makefiles. You will need them to build...
... The variable name is "crSomeThing". It is a 'constant reference' variable. You could read following as: "const SomeClass & crSomeThing" - Constant...
... I never get this. It'll probably take lesser time to get the source code by googling than waiting for a reply from an e-group. [Non-text portions of this...
... Sort of. They both point\refer to the same object. References are more safe than pointers, one should always use a reference instead of a pointer whenever...
... Forgot to add: Scott Meyers More Effective C++ first item is difference between pointers and references. Superb, must read book for all C++ Programmers. ...
... 'const' modifiers to the end of a member function declaration say to the compiler "I won't be modifying any of 'this' class' variables inside this...
dear friends am want to study the basic of c . if any one can gudie me plzs thank you By K.Gireesh [Non-text portions of this message have been removed]...
I have created a new website http://www.doubleblackdesign.com with which I am trying to capture and advocate software design and engineering best-practices....
On Fri, 31 Aug 2007 19:51:51 -0400 ... No, but this does sound like a good idea. The project isn't being distributed as a precompiled binary, which I imagine I...
On Fri, 31 Aug 2007 19:46:05 -0400 ... Thanks very much, that does the trick beautifully :-) ... I find configure scripts do the job well, but for a small...
try this: & (and) ... ^ (xor) ... << (shift left) after you write a program with those operator and still face a problem, then post it back here... :) good...
... I allowed this through to the list only because there was one article on the site that made a very interesting observation. Other than that, the site has...
... Read the group welcome message that you received when you joined. Lots of information there to help you get started. Seriously consider learning C++...
Hai , Can any one give me answer to the following Q? My Q is can we write a program/code to open /close CD-drive in either C / C++? Is it possible? If...
... C\C++\other languages have nothing to do with this. You can write a program in C\C++\VB\whatever that calls OS functions which does want you want. Assuming...
... ahem. Yashwant Kanetkar is (was?) indeed a very popular book in college. But I've realized it is not neccesarily all that good a book as it seemed when in...
... Of course it's possible. ... I did a Google search with 'eject cd C++' and got a ton of hits, with code. In fact, it took less time to do that than it took...
who wants to clear my doubts in 'C'.they can mail me to tkoushik@.... waiting for reply soon, koushik. ... Why delete messages? Unlimited storage is...
... Please post your questions to the list. -- Brett ... "In the rhythm of music a secret is hidden; If I were to divulge it, it would overturn the world." --...
Hi.... Stacks is as simply as this: Last In First Out just imagine you put 5 boxes, and you want to take 1 box, you must be taking the top 1 right? And if you...
Hi, does anybody know of a windows C++ IDE which has a vim like editor. Visual Studio is OK to browser source but to edit/move around it is not that...
Scott Meyers (and the standard) clearly instruct not to treat arrays polymorphically in C++. Because compiler has no means of finding out whether heap objects ...
Hello everyone, I would like to further this discussion by asking: If i were looking for the code that does the same operation in linux(since it's opensource),...
... <snip> Despite that I would suggest you have a look at Emacs (probably available under Cygwin, to name one example); Emacs can be used as a complete C/C++...
... What have you looked at? There is a Linux command-line tool called 'eject' that does one thing: it ejects the cd-rom tray. You should be able to track down...