查询计算机上CPU的数量

#include <stdio.h>
#include <Windows.h>

int main()
{ 
	SYSTEM_INFO SystemInfo;
	GetSystemInfo(&SystemInfo);// system information
	printf("%u\n",SystemInfo.dwNumberOfProcessors);
	return 0;
}

查询计算机上CPU的数量。





你可能感兴趣的:(查询计算机上CPU的数量)