整數的 over- flow
(高顯忠, sjgau4311@gmail.com, 2011-01-17 22:18)
1樓
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a, b, c;
a= 40000;
b= 60000;
c= a*b;
printf("\n c= %d \n", c);
system("pause");
return 0;
}