Answers for "c++ anti debugging"

C++
0

c++ anti debugging

int main()
{
    if (IsDebuggerPresent())
    {
        std::cout << "Stop debugging program!" << std::endl;
        exit(-1);
    }
    return 0;
}
Posted by: Guest on January-12-2021

Browse Popular Code Answers by Language