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
...