how can i send data to webpage using c ,i know coordinates of mouse:
#include <windows.h>
#include <winuser.h>
#include <stdio.h>
int main()
{
POINT p;
GetCursorPos(&p);
printf("%d%d\n",p.x,p.y);
}
problem is to move a mouse to position that i can type text ?
