Forum: C++ Feb 16th, 2008 |
| Replies: 6 Views: 966 Another link void main(void) - the Wrong Thing (http://users.aber.ac.uk/auj/voidmain.shtml) |
Forum: C++ Feb 16th, 2008 |
| Replies: 1 Views: 506 Function call operator is () not []. There are few undeclared variables and some variables with incorrect names. |
Forum: C++ Sep 1st, 2007 |
| Replies: 13 Views: 1,480 Also correct the way you use exception handling in code. |
Forum: C++ Dec 23rd, 2006 |
| Replies: 15 Views: 3,740 I think it's waste of time solving your problem for Turbo C. Better get a new compiler Check this link
http://www.daniweb.com/techtalkforums/thread50370.html |
Forum: C++ Dec 20th, 2006 |
| Replies: 5 Views: 2,668 Visual Leak Detector (http://www.codeproject.com/tools/visualleakdetector.asp) |
Forum: C++ Dec 19th, 2006 |
| Replies: 9 Views: 2,168 Anyone following this thread, read this instead
http://david.tribble.com/text/cdiffs.htm |
Forum: C++ Mar 12th, 2006 |
| Replies: 4 Views: 10,591 What is the problem you are facing...I am getting the desired output. |
Forum: C++ Nov 5th, 2005 |
| Replies: 4 Views: 1,205 Here Is the corrected Code...Code In Red Was Missing
#include <iostream>
using namespace std;
class SimpleCat
{
public:
SimpleCat(); |
Forum: C++ Nov 3rd, 2005 |
| Replies: 9 Views: 1,726 I think ostream class has a private copy constructor....that is why its giving you this error....you should return by reference....and ofcourse use p.function() as said by winbatch |