I have simple Win32 command line project using my own static library which in turns requires third-party static library (the Expat XML parser). I have the solution where all these three...
Now very, very strange thing happened...I wanted to clean the project so that I would put it on Internet and deleted all unused variables and nothing else..definitely I did not do anything with...
void CGeomUtils::sortByY(std::vector<myPoint> & aVect)
{
// !! Beware that this put the point with lower x-coordinate in front in case of tie with y-coordinate !!
std::sort(aVect.begin(),...
But I'm still getting the same error :( On the same line and as usual, size has right before the access violation garbage value, now it was 100852127...
Unfortunately defining operator< for myPoint wouldn't be that nice since it is just representing a point in the coordinate system (x, y) and it depends on whether we want to...
I've been told by my client that the server application I'm working on has inacceptable memory requirements, since after five days of nonstop running it gets 70 MB of memory (as shown in...
I'm doing program for school which will serve as logger: after kid logs on, it will be asked by this program for its name and he will have to confirm, whether the PC was ok when he started...
one question about this function: when I have NT domain and use logon scripts, from witch I call my program, in which I call GetComputerName(), what name will be returned? The one of server on...
I was said it doesn't have optimal solution and best is to use some heuristics, maybe let's say 3 levels of prediction and always choose the best way. I don't think there is some easy way to...