整數的 overflow
(高顯忠, sjgau4311@gmail.com, 2011-04-06 07:54)
1樓
#if 0
整數的 overflow
a= 40000, b= 60000, c= -1894967296
請按任意鍵繼續 . . .
#endif
// ----------------------------------------------
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a, b, c;
a= 40000;
b= 60000;
c= a*b;
printf("a= %d, b= %d, c= %d \n", a, b, c);
system("pause");
return(0);
}// end of main()