知識社群登入
位置: AutoCAD開放式教學 > 討論區 > 討論
0123, 0x123
1樓
#include <stdio.h>
#include <process.h>

int main()
{
int a, b;
a= 0123;
b= 0x123;
printf("\n a= %d, b= %d \n", a, b);
system("pause");
return 0;
}