0123, 0x123
(高顯忠, sjgau4311@gmail.com, 2011-04-27 11:52)
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;
}