Forum: C++ Feb 16th, 2008 |
| Replies: 6 Views: 955 Another link void main(void) - the Wrong Thing (http://users.aber.ac.uk/auj/voidmain.shtml) |
Forum: C++ Feb 16th, 2008 |
| Replies: 1 Views: 503 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,462 Also correct the way you use exception handling in code. |
Forum: C Aug 20th, 2007 |
| Replies: 6 Views: 957 Read this
http://www.eternallyconfuzzled.com/tuts/languages/jsw_tut_pointers.aspx |
Forum: C Aug 19th, 2007 |
| Replies: 5 Views: 3,491 In case char *name="Yankee Duddle"; string literal turns into an unnamed, static array of characters, and this unnamed array may be stored in read-only memory, and which therefore cannot necessarily... |
Forum: C++ Dec 23rd, 2006 |
| Replies: 15 Views: 3,710 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,648 Visual Leak Detector (http://www.codeproject.com/tools/visualleakdetector.asp) |
Forum: C++ Dec 19th, 2006 |
| Replies: 9 Views: 2,158 Anyone following this thread, read this instead
http://david.tribble.com/text/cdiffs.htm |
Forum: C++ Mar 12th, 2006 |
| Replies: 4 Views: 10,519 What is the problem you are facing...I am getting the desired output. |
Forum: Geeks' Lounge Jan 11th, 2006 |
| Replies: 26 Views: 5,963 A CEO throwing a party takes his executives on a tour of his opulent mansion. In the back of the property, the CEO has the largest swimming pool any of them has ever seen. The huge pool, however, is... |
Forum: C Dec 12th, 2005 |
| Replies: 5 Views: 1,433 Syntax
#include <string.h>
void *memset(void *s, int c, size_t n);
Description
memset() sets the first n bytes in memory area s to the value of c (converted to an
unsigned char). It returns s. |
Forum: C++ Nov 5th, 2005 |
| Replies: 4 Views: 1,202 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,723 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 |
Forum: Geeks' Lounge Oct 30th, 2005 |
| Replies: 26 Views: 5,963 We might have figured out why windows crashes so much
God was fed up. In a crash of thunder he/she yanked up to Heaven three influential humans; Bill Clinton, Boris Yeltsin, and Bill Gates. "The... |