Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,890 questions

51,817 answers

573 users

How to get windows system information in C

1 Answer

0 votes
#include <windows.h>
#include <stdio.h>

int main() {
    SYSTEM_INFO si;
    
    GetNativeSystemInfo(&si);
        
    printf("Number of Logical Processors: %d\n", si.dwNumberOfProcessors);
    printf("Page size: %d Bytes\n", si.dwPageSize);
    printf("Active processor Mask: 0x%p\n", (PVOID)si.dwActiveProcessorMask);
    printf("Minimum application address: 0x%p\n", si.lpMinimumApplicationAddress);
    printf("Maximum application address: 0x%p\n", si.lpMaximumApplicationAddress);
    printf("Processor type: %u\n", si.dwProcessorType);

    printf("OEM ID: %u\n", si.dwOemId);

    char ch = getchar();

    return 0;
}




/*
run:

Number of Logical Processors: 8
Page size: 4096 Bytes
Active processor Mask: 0x00000000000000FF
Minimum application address: 0x0000000000010000
Maximum application address: 0x00007FFFFFFEFFFF
Processor type: 8664
OEM ID: 9

*/

 



answered Apr 3, 2022 by avibootz

Related questions

1 answer 197 views
1 answer 219 views
2 answers 234 views
1 answer 167 views
...