CPU serial number

后端 未结 13 1585
情话喂你
情话喂你 2020-12-06 05:38

How do I obtain the serial number of the CPU in a PC?

13条回答
  •  悲&欢浪女
    2020-12-06 05:58

    I guess quite a few compiler do offer some wrapper or the like around the mentioned command. Here's an example

    #include 
    #include 
    #include 
    
    _CPUID cpuinfo;
    int main(void) {
    _cpuid(&cpuinfo);
    printf("Vendor: %s\n", cpuinfo.Vendor);
    return 0;
    }
    

    Output:

    Vendor: GenuineIntel
    

提交回复
热议问题