c programming

  1. Alex Sokolek

    What sort algorithm is this?

    Hi. Does anyone recognize this sort algorithm? BOOL swap; tagFileNode* TempNode; int i, j, diff = 0; for (j = _NodeCount / 2; j > 0; j /= 2) { swap = true; while (swap) { swap = false; for (i = 0; i + j < _NodeCount; ++i) { if (compare(_NodeList[i...
  2. Alex Sokolek

    New user query

    Hi. I'm a retired computer/electronics engineer with 45 years of experience supporting Windows, Unix, Oracle, and networks of hand-held computers. I write straight C/C++, mostly using the WinAPI, but also MFC. I dabble with Visual Studio writing Windows programs, and I would like to share them...
  3. J

    Windows 7 Programs instantly closing. Please help

    I have heard of this behavior from various people using various applications. It seems to happen more with 32-bit apps running on new Windows versions. The program opens and immediately closes. It is only runs for a second or less. I have tried turning off data execution prevention which does...
Back
Top