long number = 100;
printf("the sizeof: %d", sizeof(number));
In Visual Studio, I get the result 4. In Xcode, whereas I get the result 8.
Same code, different result. Could you tell me why I get this result?
long number = 100;
printf("the sizeof: %d", sizeof(number));
In Visual Studio, I get the result 4. In Xcode, whereas I get the result 8.
Same code, different result. Could you tell me why I get this result?