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,845 questions

51,766 answers

573 users

How to set code to compiled in 64 bit only or in 32 bit only using macro in windows with C

1 Answer

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

int main(void)
{
    SYSTEM_INFO si;

    GetNativeSystemInfo(&si);

    #ifdef _WIN64
        printf("64: Processor Mask: 0x%016llX\n", si.dwActiveProcessorMask);
        printf("64 bit\n");
    #else
        printf("32: Processor Mask: 0x%08X\n", si.dwActiveProcessorMask);
        printf("32 bit\n");
    #endif

    char ch = getchar();

    return 0;
}
 



/*
run:

64: Processor Mask: 0x00000000000000FF
64 bit

*/

 



answered Apr 7, 2022 by avibootz
edited Apr 8, 2022 by avibootz
...