You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
244 B

#include <stdio.h>
int main(int argc, char *argv[]) {
if (sizeof(void*) == 4) {
printf("Running Win32\n");
} else if (sizeof(void*) == 8) {
printf("Running x64\n");
} else {
printf("Unexpected platform\n");
}
return 0;
}