Answers for "c++ how to move cursor"

C++
1

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

Code answers related to "c++ how to move cursor"

Browse Popular Code Answers by Language