(C++) OutputDebugString by Thomas Roccia

Created the Thursday 17 September 2020. Updated 3 years, 6 months 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;
}