Ile to jest -2147483648 * -1?
Ile to jest -2147483648 * -1 według Twojego 32 bitowego komputera?
int main (){
int x;
x = INT_MIN; /* czyli -2147483648 */
printf("%i\n",x);
x = x / -1;
printf("%i\n",x);
}
Mój komputer uważa, że to jest -2147483648. I kto mówi że komputery się nie mylą...
No comments:
Post a Comment