Answers for "c++ how to move mouse"

C++
0

move mouse c++

#include <Windows.h>
int main()
{
  int x = 3; int y = 4;
  SetCursorPos(x, y); //set cursor position
  return 0;
}
Posted by: Guest on July-15-2021

Browse Popular Code Answers by Language