comp.lang.c++
  Home FAQ Contact Sign in
comp.lang.c++ only
 
Advanced search
February 2008
motuwethfrsasuw
    123 5
45678910 6
11121314151617 7
18192021222324 8
2526272829   9
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
comp.lang.c++ Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  Registry and Spyware Cleaner (Free Download)         


Author: stelevision
Date: Feb 28, 2008 22:55

Netcom3(tm) is a recognized global leader in internet security software.
With Netcom3 Internet Security Suite, it's key focus is on securing
sensitive consumer online interactions, as well as prevent and remove
Spyware, Adware, optimize, fix PC errors, and make your system run
faster and error free. Netcom3 Internet Security Software will speed
up your computer, detects and removes spyware and adware, Viruses,
Trojans, Dialers, Worms and a host of other dangerous parasites. It
automatically detects and corrects the most common problems including:
run time errors, corrupt files, invalid paths, fonts, file types,
CLSID, DLLs, sound, help files, shell extensions, AppEvents, class
keys and many more. Just like with a car your PC needs software
maintenance to keep it running smoothly like the first time you booted
your pc. A common cause of Windows crashes, error messages and
performance problems are the result of registry inconsistencies.
Netcom3(tm) Windows registry cleaner can fix these problems for you and
make your PC run smoothly again. Firewall and a good anti-virus
product are important. But these alone won't protect you from
intrusive spyware or keep your PC optimized for peak performance. This
is why Netcom3 Internet Security Suite has been developed to be the
perfect support for Windows PCs. ...
Show full article (1.41Kb)
no comments
  Tips anyone         


Author: pleatofthepants
Date: Feb 28, 2008 21:17

Ok, I have to solve the "Rat Maze" problem"

I am opening a file called maze.txt which looks similar to this

20 *this is # of rows
20 *this is # of columns
9 *starting row
9 *starting column
11111111111111101111
10101010101010101011
10000010001000101001
10111000100010000011
10111111111111111011
etc....

I have to find the path out of the maze using recursion

This is what I have come up with for the recursion function, ant tips?

int maze(int data[][])
{
data[r][c];
Show full article (1.22Kb)
6 Comments
  Free online Games play and free download - Intelligent games         


Author: shenrilaa
Date: Feb 28, 2008 19:02

Free online Games play and free download - Intelligent games
Champions aren't made in the gyms. Champions are made from something
they have deep inside them
-- a desire, a dream, a vision.. Excellent
games linkkkkkkkk....

http://shenrilaa.googlepages.com/
no comments
  C++0x on name mangling.         


Author: jason.cipriani
Date: Feb 28, 2008 18:44

Does anybody know if C++0x is going to change C++ name mangling at
all? Such as, standardizing name mangling instead of leaving it up to
the compiler?

Jason
4 Comments
  profiler, again         


Author: David Levy
Date: Feb 28, 2008 16:23

I am a long time user of Visual C++ 6.0. For a variety of reasons I am now
running Vista and Visual C++ won't run there. I purchased Visual Studio 2008
Professional, which included a C++ compiler. Alas, I just learned that the
profile that shipped with 6.0 is not part of 2008 Professional. I would need
to buy the Visual Studio Team System. Having been forced to buy an unwanted
new operating system and then an unwanted new development environment, I'm
anxious to stop the bleeding/

Are there any other (inexpensive) solutions?
7 Comments
  Dynamic allocate string array         


Author: huohaodian
Date: Feb 28, 2008 11:53

Hi,

I have a char * mFileList[];

how can i dynamically allocate it to save some strings?

Thanks in advance
8 Comments
  size_t literals?         


Author: jacek.dziedzic
Date: Feb 28, 2008 09:32

Hi!

On a machine where size_t is 64-bit, unsigned long is 32-bit, how
does one construct a size_t literal that says 2^32? Typing in

size_t x = 4294967296UL;

complains about the value being too large for unsigned long
(obviously, it's too large by one).

The nonstandard suffices "UI64" are also not recognized by the
compiler.

Should I construct with a value of 4294967295UL and then increment
the size_t variable?

TIA,
- J.
71 Comments
  get temp directory         


Author: Alberto Bignotti
Date: Feb 28, 2008 08:00

How to get user temporany directory from c++ function?

example:

string myTempDir = getTempDir();

now myTempDir contains 'c:\tmp'

is there a portable function?
3 Comments
  Implementing a smart pointer which works with incomplete types         


Author: Juha Nieminen
Date: Feb 28, 2008 07:10

I know this has been explained before, but I just can't find the post.
Also, I can't find any info on this in the C++ FAQ Lite.

In order to make a smart pointer class work with incomplete types,
some trickery is needed. I found one solution somewhere, which looks
like this:

template
class GenericPtr
{
private:
typedef void(*DeleteFunctionType)(T* p);
DeleteFunctionType deleteFunction;
T* ptr;
static void doDelete(T* p) { delete p; }

public:
GenericPtr(T* p): ptr(p), deleteFunction(doDelete) {}
~GenericPtr() { deleteFunction(ptr); }

// other functions omitted
};
Show full article (0.92Kb)
13 Comments
  build UML from C++ source         


Author: mosfet
Date: Feb 28, 2008 06:14

Hi,

do you know a good tool to create a UML diagramm from C++ source code ?
6 Comments
1 2