在C語言中,要獲取鼠標當前位置,通常需要使用圖形庫或操作系統提供的相關函數。下面以Windows操作系統為例,介紹一種獲取鼠標當前位置的方法:
#include <Windows.h>
POINT cursorPos;
GetCursorPos(&cursorPos);
int x = cursorPos.x;
int y = cursorPos.y;
完整的示例代碼如下:
#include <Windows.h>
int main() {
POINT cursorPos;
GetCursorPos(&cursorPos);
int x = cursorPos.x;
int y = cursorPos.y;
printf("當前鼠標位置:x = %d, y = %d\n", x, y);
return 0;
}
需要注意的是,以上示例代碼只能在Windows操作系統下運行,如果在其他操作系統中運行,需要使用相應的操作系統提供的函數來獲取鼠標位置。