
(C++) OutputDebugString by Thomas Roccia
Created the Thursday 17 September 2020. Updated 3 years ago.
Code
#include <stdio.h>
#include <Windows.h>
int main()
{
SetLastError(0);
// Send string to the debugger
OutputDebugStringA("Hello friend");
if (GetLastError() != 0)
{
printf("Debugger detected!!\n");
}
system("pause");
return 0;
}