VC6.0 c++ 编写一个程序用一个十六进制数对整型变量a赋值,按十进制数出a

2024-11-15 10:39:23
推荐回答(1个)
回答1:

int main()
{
int i=0x10;
printf("%d",i);
return 0;
}