C语言的16进制输入

#include<stdio.h>
int main(void)
{
int a = 0x40;
printf("%d",a);
for (; 1;);
}

你可能感兴趣的:(C语言)