知識社群登入
位置: AutoCAD開放式教學 > 討論區 > 討論
int , over flow
1樓
#if 0

 c= -1894967296
請按任意鍵繼續 . . .

#endif
// ----------------------------------------------------------------------------

#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;
}